Sway : Add swaykbdd.

This commit is contained in:
Dmitry Voronin 2024-07-28 00:51:53 +03:00
parent 569a1e4859
commit 4a7d1e9c62
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
2 changed files with 7 additions and 1 deletions

View file

@ -39,5 +39,8 @@
# Hide mouse cursor after a period of inactivity.
seat seat0 hide_cursor ${toString config.setting.timeout.popup}
# Per-window languages.
exec swaykbdd
'';
}

View file

@ -1,4 +1,4 @@
{ lib, config, ... } @args: with lib; let
{ lib, config, pkgs, ... } @args: with lib; let
cfg = config.module.desktop.sway;
in {
options = {
@ -28,6 +28,9 @@ in {
base = true;
gtk = true;
};
extraPackages = with pkgs; [
swaykbdd
];
};
};
}