dotfiles-guix/systems/curiass.scm

24 lines
894 B
Scheme
Raw Normal View History

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