diff options
| -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 |
