dotfiles-guix/systems/cuirass.scm
2024-10-23 00:19:24 -04:00

23 lines
894 B
Scheme

(use-modules (freya system)
(gnu))
(operating-system
(inherit %virt-freya-operating-system)
(host-name "cuirass")
(swap-devices (list (swap-space
(target (uuid
"8ffa6d73-06e9-4dc5-9b15-569b3b176dbc")))))
(file-systems (cons* (file-system
(mount-point "/")
(device (uuid "fae7deed-d630-40a1-adac-87f49b431ad4"))
(type "btrfs"))
(file-system
(mount-point "/boot")
(device (uuid "027A-4AA1"
'fat32))
(type "vfat"))
(operating-system-file-systems
%virt-freya-operating-system)))
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(targets '("/dev/sda")))))