diff options
Diffstat (limited to 'etc/guix/system.scm')
-rw-r--r-- | etc/guix/system.scm | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index f5c3b38..f0fec99 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -274,31 +274,21 @@ Seiko Epson Color Ink Jet Printers.") (mapped-devices (list (mapped-device - ;; AKA /dev/sda2 - (source (uuid "6b0d38a6-d93e-4f8e-a59a-7729f5adf892")) + ;; AKA /dev/nvme0n1p2 + (source (uuid "99777544-e6ed-46d7-b154-bd44124a812b")) (target "cryptroot") - (type luks-device-mapping)) - (mapped-device - ;; AKA /dev/sdb1 - (source (uuid "04543b18-0ecb-462e-a8fa-fe7d6c5ff7d7")) - (target "dois") (type luks-device-mapping)))) (file-systems (append (list (file-system (mount-point "/boot/efi") - ;; AKA /dev/sda1 - (device (uuid "1B26-9F4E" 'fat32)) + ;; AKA /dev/nvme0n1p1 + (device (uuid "AE8A-8926" 'fat32)) (type "vfat")) (file-system (mount-point "/") (device "/dev/mapper/cryptroot") - (type "ext4") - (dependencies mapped-devices)) - (file-system - (mount-point "/mnt/dois") - (device "/dev/mapper/dois") (type "btrfs") (dependencies mapped-devices))) %base-file-systems)) @@ -308,11 +298,11 @@ Seiko Epson Color Ink Jet Printers.") ;; # rm -f /swapfile ;; # truncate -s 0 /swapfile ;; # chattr +C /swapfile - ;; # fallocate -l 8G /swapfile + ;; # fallocate -l 32G /swapfile ;; # chmod 600 /swapfile ;; # mkswap /swapfile ;; # swapon /swapfile - (target "/mnt/dois/swapfile") + (target "/swapfile") (dependencies (filter (file-system-mount-point-predicate "/") file-systems)))))) |