summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/system-base.scm6
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))