diff options
| author | bdunahu <bdunahu@operationnull.com> | 2026-01-05 01:17:01 -0700 |
|---|---|---|
| committer | bdunahu <bdunahu@operationnull.com> | 2026-01-05 01:17:01 -0700 |
| commit | a1c681803b3f76483e466af78a6c47b73e429e5c (patch) | |
| tree | 5710669974af7022dd86f497432fda5632f9fd7b /kolwynia | |
| parent | c2b706ff2f3aa42d58a03febad1d1b8f8d5a1142 (diff) | |
declare correct file devices for hel
Diffstat (limited to 'kolwynia')
| -rw-r--r-- | kolwynia/os/hel/file-systems.scm | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/kolwynia/os/hel/file-systems.scm b/kolwynia/os/hel/file-systems.scm index b975c56..2c7d966 100644 --- a/kolwynia/os/hel/file-systems.scm +++ b/kolwynia/os/hel/file-systems.scm @@ -12,28 +12,22 @@ (define %mapped-devices (list (mapped-device - (source (uuid "671c8094-c8cd-47f9-8332-25513f16917b")) - (target "hidden") + (source (uuid "e76f9813-8f12-49bc-b09b-48acf9710826")) + (target "cryptroot") (type luks-device-mapping)))) (define %file-systems (cons* (file-system (mount-point "/boot/efi") (device (uuid - "1A7A-026F" + "6177-157D" 'fat32)) (type "vfat")) (file-system - (mount-point "/home") - (device "/dev/mapper/hidden") + (mount-point "/") + (device "/dev/mapper/cryptroot") (type "ext4") (dependencies %mapped-devices)) - (file-system - (mount-point "/") - (device (uuid - "0a0b9520-308f-4072-a62b-b91ffacdc5b0" - 'ext4)) - (type "ext4")) - %base-file-systems)) + %base-file-systems)) ;;; file-systems.scm ends here |
