diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-22 21:02:08 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-22 21:02:08 -0400 |
commit | a1d30ad8f36c54115c25ccb730748bfc6046d727 (patch) | |
tree | 6eb5ec17cc76fc3ab298b911cbb8088467f90c67 /systems/kaworu.scm | |
parent | port cow store from guix internal (diff) | |
download | dotfiles-guix-a1d30ad8f36c54115c25ccb730748bfc6046d727.tar.gz dotfiles-guix-a1d30ad8f36c54115c25ccb730748bfc6046d727.tar.bz2 dotfiles-guix-a1d30ad8f36c54115c25ccb730748bfc6046d727.zip |
refactor installer, add curiass system
Diffstat (limited to 'systems/kaworu.scm')
-rw-r--r-- | systems/kaworu.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/systems/kaworu.scm b/systems/kaworu.scm index f254f6f..77625de 100644 --- a/systems/kaworu.scm +++ b/systems/kaworu.scm @@ -2,15 +2,13 @@ (gnu)) (operating-system - (inherit base-operating-system) + (inherit %desktop-freya-operating-system) (host-name "kaworu") - (mapped-devices (list (mapped-device (source (uuid "89257280-202b-4565-b832-89f160d5e4e2")) (target "cryptroot") (type luks-device-mapping)))) - (file-systems (cons* (file-system (mount-point "/") (device "/dev/mapper/cryptroot") @@ -21,4 +19,5 @@ (device (uuid "099A-D668" 'fat32)) (type "vfat")) - %freya-file-systems))) + (operating-system-file-systems + %desktop-freya-operating-system)))) |