diff options
author | Thanos Apollo <[email protected]> | 2025-02-04 16:44:23 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2025-02-04 16:44:23 +0200 |
commit | 75374d9ab9b41d43de5d9ae4b00318b81d38aeca (patch) | |
tree | 8f52ac9206904cf3fc4b5a93b4f53a40ff9ddd42 /guix/desktop.scm | |
parent | 8fa9db10bf9193e10a19f4b8c583f40f3959208a (diff) |
guix: rename constantine to desktop.
Diffstat (limited to 'guix/desktop.scm')
-rw-r--r-- | guix/desktop.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/guix/desktop.scm b/guix/desktop.scm new file mode 100644 index 0000000..bf97656 --- /dev/null +++ b/guix/desktop.scm @@ -0,0 +1,27 @@ + +(define-module (desktop) + #: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) |