diff --git a/system/configuration.nix b/system/configuration.nix index 516a3ff..6661e40 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -22,7 +22,6 @@ ./users.nix ./containers.nix ./network.nix - ./keyboard.nix ../settings ]; diff --git a/system/keyboard.nix b/system/keyboard.nix deleted file mode 100644 index bdb9f24..0000000 --- a/system/keyboard.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ pkgs, lib, ... }: -{ - services.keyd = { - enable = true; - keyboards.default = { - ids = [ "*" ]; - settings = { - "main" = { - # Some programs don't respect colemaks capslock bind, so we force it here - "capslock" = "backspace"; - - # keyd has incorrect defaults :/ - "leftshift" = "leftshift"; - "rightshift" = "rightshift"; - "leftalt" = "leftalt"; - "rightalt" = "rightalt"; - "leftcontrol" = "leftcontrol"; - "rightcontrol" = "rightcontrol"; - "leftmeta" = "leftmeta"; - "rightmeta" = "rightmeta"; - }; - }; - }; - }; -}