summaryrefslogtreecommitdiff
path: root/guix/zeus.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/zeus.scm')
-rw-r--r--guix/zeus.scm30
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")