guix: switch to us basic layout instead of us altgr-intl
[~bandali/configs] / .config / guix / system / chaman.scm
1 (use-modules (gnu))
2 (use-service-modules desktop networking ssh xorg)
3
4 (operating-system
5 (host-name "chaman")
6 (locale "en_CA.utf8")
7 (timezone "America/Toronto")
8 (keyboard-layout
9 (keyboard-layout "us" "basic"))
10 (bootloader
11 (bootloader-configuration
12 (bootloader grub-bootloader)
13 (target "/dev/sda")
14 (keyboard-layout keyboard-layout)))
15 (mapped-devices
16 (list (mapped-device
17 (source
18 (uuid "3d9d579d-3626-4fb2-9c16-beae804f1cf9"))
19 (target "groot")
20 (type luks-device-mapping))))
21 (file-systems
22 (cons* (file-system
23 (mount-point "/")
24 (device "/dev/mapper/groot")
25 (type "ext4")
26 (dependencies mapped-devices))
27 %base-file-systems))
28 (users (cons* (user-account
29 (name "bandali")
30 (group "users")
31 (home-directory "/home/bandali")
32 (supplementary-groups
33 '("wheel" "netdev" "audio" "video")))
34 %base-user-accounts))
35 (packages
36 (append
37 (list (specification->package "nss-certs"))
38 %base-packages))
39 (services
40 (append
41 (list (service xfce-desktop-service-type)
42 (service openssh-service-type)
43 (set-xorg-configuration
44 (xorg-configuration
45 (keyboard-layout keyboard-layout))))
46 %desktop-services)))