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/shinji.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/shinji.scm')
-rw-r--r-- | systems/shinji.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/systems/shinji.scm b/systems/shinji.scm index 3a48ea7..54b21ec 100644 --- a/systems/shinji.scm +++ b/systems/shinji.scm @@ -2,19 +2,16 @@ (gnu)) (operating-system - (inherit base-operating-system) + (inherit %desktop-freya-operating-system) (host-name "shinji") - (mapped-devices (list (mapped-device (source (uuid "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/root") @@ -25,4 +22,5 @@ (device (uuid "6F93-6A0B" 'fat32)) (type "vfat")) - %freya-file-systems))) + (operating-system-file-systems + %desktop-freya-operating-system)))) |