diff options
Diffstat (limited to '.config/guix/evilgnu.scm')
-rw-r--r-- | .config/guix/evilgnu.scm | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/.config/guix/evilgnu.scm b/.config/guix/evilgnu.scm index 6f10bb5..fceee81 100644 --- a/.config/guix/evilgnu.scm +++ b/.config/guix/evilgnu.scm @@ -2,24 +2,28 @@ #:use-module (system) #:use-module (gnu)) + + (operating-system (inherit base-operating-system) (host-name "evilgnu") (file-systems (cons* (file-system - (mount-point "/boot/efi") - (device (uuid "021E-83B3" - 'fat32)) - (type "vfat")) - (file-system - (mount-point "/") - (device (uuid - "b0147644-6bbf-41b8-85c5-0a4c3fce042b" - 'ext4)) - (type "ext4")) - (file-system - (mount-point "/home") - (device (uuid - "4cf08e5e-47c3-41b4-bd05-abbe5e6f5590" - 'ext4)) - (type "ext4")) %base-file-systems))) + (mount-point "/boot/efi") + (device (uuid "021E-83B3" + 'fat32)) + (type "vfat")) + (file-system + (mount-point "/") + (device (uuid + "b0147644-6bbf-41b8-85c5-0a4c3fce042b" + 'ext4)) + (type "ext4")) + (file-system + (mount-point "/home") + (device (uuid + "4cf08e5e-47c3-41b4-bd05-abbe5e6f5590" + 'ext4)) + (type "ext4")) %base-file-systems))) + + |