From 551300b8ffdf3842b074300d558adf75b6dee1f4 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 7 May 2024 14:11:22 +0200 Subject: [PATCH] Add keymap to default settings --- flake.nix | 1 + lib/configuration.nix | 3 +++ 2 files changed, 4 insertions(+) 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; }; }