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/alexios.scm | |
parent | 51b8c8382f1e64961e24a629f0ead813161f3853 (diff) |
guix: Update modules for new hostnames.
Diffstat (limited to 'guix/alexios.scm')
-rw-r--r-- | guix/alexios.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/guix/alexios.scm b/guix/alexios.scm new file mode 100644 index 0000000..a6d28b1 --- /dev/null +++ b/guix/alexios.scm @@ -0,0 +1,22 @@ + +(define-module (alexios) + #:use-module (gnu) + #:use-module (system-create)) + +(use-package-modules file-systems) + +(system-create #:hostname "alexios" + #:filesystem (cons* (file-system + (mount-point "/boot/efi") + (device (uuid "1F4A-0DF0" + 'fat32)) + (type "vfat")) + (file-system + (mount-point "/") + (device (uuid + "b4664996-7c96-4b8c-9fe7-26cda3021c9d" + 'ext4)) + (type "ext4")) + %base-file-systems) + #:swap-uuid "1b620436-7874-40d3-b580-7d2358a9f28e") + |