diff options
author | Thanos Apollo <[email protected]> | 2024-05-26 15:14:23 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-05-26 15:14:23 +0300 |
commit | 7bdc5c1c4533b6e4b07cf1149218b171148ab851 (patch) | |
tree | 29107e41d2ba56fd8a856b65f7c0935e908174ee /guix/zeus.scm | |
parent | e9b647e8bb3c3f625bf2b3452d08ecb8f9930c27 (diff) |
guix: modularize for filesystems
Playing around with filesystems
Diffstat (limited to 'guix/zeus.scm')
-rw-r--r-- | guix/zeus.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/guix/zeus.scm b/guix/zeus.scm new file mode 100644 index 0000000..cd98c97 --- /dev/null +++ b/guix/zeus.scm @@ -0,0 +1,30 @@ + +(define-module (zeus) + #:use-module (gnu) + #:use-module (system-base)) + +(use-package-modules file-systems) + +(system-base "zeus" + (cons* (file-system + (mount-point "/hdd") + (device (uuid "b0fddf60-47ff-469f-b135-8f6b58812c99" + 'xfs)) + (type "xfs")) + (file-system + (mount-point "/home") + (device (uuid "4efbc805-e89b-46b8-b895-b1ce807698c8" + 'ext4)) + (type "ext4")) + (file-system + (mount-point "/") + (device (uuid + "e350994d-4c98-4d04-9867-29c9fc779026" + 'ext4)) + (type "ext4")) + (file-system + (mount-point "/boot/efi") + (device (uuid "F2A9-FB50" + 'fat32)) + (type "vfat")) %base-file-systems) + "10551e45-7810-4171-a4b2-87372ae5bdb4") |