diff options
Diffstat (limited to 'guix/constantine.scm')
-rw-r--r-- | guix/constantine.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/guix/constantine.scm b/guix/constantine.scm new file mode 100644 index 0000000..a0674bf --- /dev/null +++ b/guix/constantine.scm @@ -0,0 +1,27 @@ + +(define-module (constantine) + #:use-module (gnu) + #:use-module (system-create)) + +(use-package-modules file-systems) + +(system-create #:hostname "constantine" + #:filesystem (cons* (file-system + (mount-point "/hdd") + (device (uuid "b0fddf60-47ff-469f-b135-8f6b58812c99" + 'xfs)) + (type "xfs")) + (file-system + (mount-point "/boot/efi") + (device (uuid "D0B4-4407" + 'fat32)) + (type "vfat")) + (file-system + (mount-point "/") + (device (uuid + "ebc6d6e0-eecb-4ff6-8e1e-059a860dd30f" + 'ext4)) + (type "ext4")) + %base-file-systems) + #:swap-uuid "49859dc4-84ea-425e-9b83-12d1ca1bf65e" + #:swapcaps? #f) |