diff options
author | Thanos Apollo <[email protected]> | 2025-01-14 21:04:28 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2025-01-14 21:05:04 +0200 |
commit | 3f4b86a2b880e63760b9c55446cf6d5f6350b757 (patch) | |
tree | 5125985ff6699aa05a5c6cda2ff2d8e0bc9185b3 /guix/constantine.scm | |
parent | 51b8c8382f1e64961e24a629f0ead813161f3853 (diff) |
guix: Update modules for new hostnames.
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) |