diff options
author | Thanos Apollo <[email protected]> | 2024-05-31 16:54:01 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-05-31 16:54:01 +0300 |
commit | 7f75832066a4e3c8bffa6be6d707c6f2c56eed70 (patch) | |
tree | fe07da46935d9fc18fc97f96a0934e78274efb58 /guix/system-base.scm | |
parent | 626127243a2ddba2b0bcc469637d82e28b39f294 (diff) |
guix:(system) Use linux-lts & adjust keyboard for hostname
Diffstat (limited to 'guix/system-base.scm')
-rw-r--r-- | guix/system-base.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/guix/system-base.scm b/guix/system-base.scm index 50da5a4..e04ce1f 100644 --- a/guix/system-base.scm +++ b/guix/system-base.scm @@ -28,11 +28,13 @@ (operating-system (locale "en_US.utf8") (timezone "Europe/Athens") - (keyboard-layout (keyboard-layout "us")) + (keyboard-layout (if (eq? host-name "zeus") + (keyboard-layout "us") + (keyboard-layout "us" #:options '("ctrl:swapcaps")))) (host-name host-name) ;; TODO: Use the full linux kernel only on the desktop - (kernel linux) + (kernel linux-lts) (initrd microcode-initrd) (firmware (list linux-firmware)) |