92 lines
2.7 KiB
Scheme
92 lines
2.7 KiB
Scheme
;; This is an operating system configuration generated
|
|
;; by the graphical installer.
|
|
|
|
(use-modules (gnu))
|
|
(use-modules (nongnu packages linux)
|
|
(nongnu system linux-initrd))
|
|
(use-modules (gnu packages version-control))
|
|
(use-modules (gnu packages gnuzilla))
|
|
(use-modules (gnu packages vim))
|
|
(use-modules (gnu packages ssh))
|
|
|
|
(use-service-modules desktop networking ssh xorg)
|
|
|
|
(define %xorg-libinput-config
|
|
"Section \"InputClass\"
|
|
Identifier \"Touchpads\"
|
|
Driver \"libinput\"
|
|
MatchDevicePath \"/dev/input/event*\"
|
|
MatchIsTouchpad \"on\"
|
|
|
|
Option \"Tapping\" \"on\"
|
|
Option \"TappingDrag\" \"on\"
|
|
Option \"DisableWhileTyping\" \"on\"
|
|
Option \"MiddleEmulation\" \"on\"
|
|
Option \"ScrollMethod\" \"twofinger\"
|
|
EndSection
|
|
Section \"InputClass\"
|
|
Identifier \"Keyboards\"
|
|
Driver \"libinput\"
|
|
MatchDevicePath \"/dev/input/event*\"
|
|
MatchIsKeyboard \"on\"
|
|
EndSection
|
|
")
|
|
|
|
(operating-system
|
|
(locale "en_GB.utf8")
|
|
(timezone "Europe/London")
|
|
(keyboard-layout (keyboard-layout "pl"))
|
|
(host-name "skinnyv")
|
|
(kernel linux)
|
|
(initrd microcode-initrd)
|
|
(firmware (list linux-firmware))
|
|
(users (cons* (user-account
|
|
(name "cyryl")
|
|
(comment "")
|
|
(group "users")
|
|
(home-directory "/home/cyryl")
|
|
(supplementary-groups
|
|
'("wheel" "netdev" "audio" "video")))
|
|
%base-user-accounts))
|
|
(packages
|
|
(append
|
|
(list (specification->package "i3-wm")
|
|
(specification->package "i3status")
|
|
(specification->package "dmenu")
|
|
(specification->package "st")
|
|
(specification->package "nss-certs")
|
|
git
|
|
icecat
|
|
vim
|
|
openssh)
|
|
%base-packages))
|
|
(services
|
|
(append
|
|
(list (service gnome-desktop-service-type)
|
|
(set-xorg-configuration
|
|
(xorg-configuration
|
|
(keyboard-layout keyboard-layout)
|
|
(extra-config (list %xorg-libinput-config)))))
|
|
%desktop-services))
|
|
(bootloader
|
|
(bootloader-configuration
|
|
(bootloader grub-efi-bootloader)
|
|
(target "/boot/efi")
|
|
(keyboard-layout keyboard-layout)))
|
|
(mapped-devices
|
|
(list (mapped-device
|
|
(source
|
|
(uuid "a3b9288c-5669-4b6d-80ec-206ce1d765e6"))
|
|
(target "cryptroot")
|
|
(type luks-device-mapping))))
|
|
(file-systems
|
|
(cons* (file-system
|
|
(mount-point "/")
|
|
(device "/dev/mapper/cryptroot")
|
|
(type "btrfs")
|
|
(dependencies mapped-devices))
|
|
(file-system
|
|
(mount-point "/boot/efi")
|
|
(device (uuid "5B87-265F" 'fat32))
|
|
(type "vfat"))
|
|
%base-file-systems)))
|