diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-28 11:19:35 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-28 11:19:35 -0700 |
commit | 609c52874024b164f59cf0541ef44ccad2c76099 (patch) | |
tree | c009b8100b550279b7478cd978a2984efd4f26ab /hosts/common | |
parent | 6ba8b34406adb4d67ec5da341977563a4460e6eb (diff) | |
download | nix-609c52874024b164f59cf0541ef44ccad2c76099.tar nix-609c52874024b164f59cf0541ef44ccad2c76099.tar.gz nix-609c52874024b164f59cf0541ef44ccad2c76099.tar.bz2 nix-609c52874024b164f59cf0541ef44ccad2c76099.tar.lz nix-609c52874024b164f59cf0541ef44ccad2c76099.tar.xz nix-609c52874024b164f59cf0541ef44ccad2c76099.tar.zst nix-609c52874024b164f59cf0541ef44ccad2c76099.zip |
Replace deprecated option
Diffstat (limited to '')
-rw-r--r-- | hosts/common/optional/services/xorg.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/common/optional/services/xorg.nix b/hosts/common/optional/services/xorg.nix index 33a854f..a275605 100644 --- a/hosts/common/optional/services/xorg.nix +++ b/hosts/common/optional/services/xorg.nix @@ -63,6 +63,7 @@ services.blueman.enable = true; services.printing.enable = true; services.displayManager.defaultSession = "xsession"; + services.libinput.enable = true; services.xserver = { displayManager.lightdm = { enable = true; @@ -78,7 +79,6 @@ ]; enable = true; - libinput.enable = true; xkb.layout = "us"; xkb.options = "caps:super,compose:ralt"; }; |