Sway : Add swaykbdd.
This commit is contained in:
parent
569a1e4859
commit
4a7d1e9c62
|
@ -39,5 +39,8 @@
|
||||||
|
|
||||||
# Hide mouse cursor after a period of inactivity.
|
# Hide mouse cursor after a period of inactivity.
|
||||||
seat seat0 hide_cursor ${toString config.setting.timeout.popup}
|
seat seat0 hide_cursor ${toString config.setting.timeout.popup}
|
||||||
|
|
||||||
|
# Per-window languages.
|
||||||
|
exec swaykbdd
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, config, ... } @args: with lib; let
|
{ lib, config, pkgs, ... } @args: with lib; let
|
||||||
cfg = config.module.desktop.sway;
|
cfg = config.module.desktop.sway;
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
|
@ -28,6 +28,9 @@ in {
|
||||||
base = true;
|
base = true;
|
||||||
gtk = true;
|
gtk = true;
|
||||||
};
|
};
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
swaykbdd
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue