summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-10-21 23:29:37 -0400
committerFreya Murphy <freya@freyacat.org>2024-10-21 23:29:37 -0400
commit7e15a35953d79ce5e7ef1ac3cacbd5bbc6874021 (patch)
tree4e47cc41918e345129be89e6b14b3fbbed7bd741 /systems
parentrefactor system, add installer config (diff)
downloaddotfiles-guix-7e15a35953d79ce5e7ef1ac3cacbd5bbc6874021.tar.gz
dotfiles-guix-7e15a35953d79ce5e7ef1ac3cacbd5bbc6874021.tar.bz2
dotfiles-guix-7e15a35953d79ce5e7ef1ac3cacbd5bbc6874021.zip
update shinji
Diffstat (limited to 'systems')
-rw-r--r--systems/shinji.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/systems/shinji.scm b/systems/shinji.scm
index d5333fd..3a48ea7 100644
--- a/systems/shinji.scm
+++ b/systems/shinji.scm
@@ -7,18 +7,22 @@
(mapped-devices (list (mapped-device
(source (uuid
- "5c5dcb22-62b1-41af-9116-b8fdfba83ca2"))
- (target "cryptroot")
+ "ad489bfa-4280-44ea-8ad2-60347b516d60"))
+ (target "root")
(type luks-device-mapping))))
+ (swap-devices (list (swap-space
+ (target (uuid
+ "57caa02d-8569-43e3-8bf9-09dd6f02b191")))))
+
(file-systems (cons* (file-system
(mount-point "/")
- (device "/dev/mapper/cryptroot")
+ (device "/dev/mapper/root")
(type "btrfs")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
- (device (uuid "AD5A-4DF3"
+ (device (uuid "6F93-6A0B"
'fat32))
(type "vfat"))
%freya-file-systems)))