diff options
author | Thanos Apollo <[email protected]> | 2023-01-13 23:16:12 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-01-13 23:16:12 +0200 |
commit | 335fcb7f75d687e497a83cfa6804d66241826220 (patch) | |
tree | 3ff58e0311c48884a5c016cf1ed9c3b10638b9bd /.config/guix/evilgnu.scm | |
parent | 304fae64fc9f4854f58968be729d5e4450e2fb45 (diff) |
guix: encapsulate systems
Diffstat (limited to '.config/guix/evilgnu.scm')
-rw-r--r-- | .config/guix/evilgnu.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.config/guix/evilgnu.scm b/.config/guix/evilgnu.scm new file mode 100644 index 0000000..6f10bb5 --- /dev/null +++ b/.config/guix/evilgnu.scm @@ -0,0 +1,25 @@ +(define-module (evilgnu) + #:use-module (system) + #:use-module (gnu)) + +(operating-system + (inherit base-operating-system) + (host-name "evilgnu") + + (file-systems (cons* (file-system + (mount-point "/boot/efi") + (device (uuid "021E-83B3" + 'fat32)) + (type "vfat")) + (file-system + (mount-point "/") + (device (uuid + "b0147644-6bbf-41b8-85c5-0a4c3fce042b" + 'ext4)) + (type "ext4")) + (file-system + (mount-point "/home") + (device (uuid + "4cf08e5e-47c3-41b4-bd05-abbe5e6f5590" + 'ext4)) + (type "ext4")) %base-file-systems))) |