diff --git a/flake.nix b/flake.nix index b31045e..62060fd 100644 --- a/flake.nix +++ b/flake.nix @@ -47,6 +47,7 @@ default = { dualBoot = false; timeZone = null; + keyMap = "us"; }; systems = [ { diff --git a/lib/configuration.nix b/lib/configuration.nix index e9028d9..9e016da 100644 --- a/lib/configuration.nix +++ b/lib/configuration.nix @@ -28,5 +28,8 @@ # Set time zone time.timeZone = machineConfig.timeZone; + + # Configure keyboard layout + console.keyMap = machineConfig.keyMap; }; }