summaryrefslogtreecommitdiff
path: root/hosts/ades/default.nix
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-05-27 22:02:57 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-05-29 17:00:04 -0500
commit66755e8a78211ed38c8d6b282d5221d97f0fe664 (patch)
treeff4b3bb83c8c2ef061050f82bed8fcb41d5cef51 /hosts/ades/default.nix
parent6c1ee2e94f7e3fb2b13732208118f798805f45c4 (diff)
downloadnixos-config-66755e8a78211ed38c8d6b282d5221d97f0fe664.tar.gz
nixos-config-66755e8a78211ed38c8d6b282d5221d97f0fe664.zip
hosts/ades: Add initial version of live ISO with ades' configuration
Diffstat (limited to 'hosts/ades/default.nix')
-rw-r--r--hosts/ades/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/hosts/ades/default.nix b/hosts/ades/default.nix
index 8f3f4e6..82496c1 100644
--- a/hosts/ades/default.nix
+++ b/hosts/ades/default.nix
@@ -7,7 +7,8 @@ let
in
mergeAttrsList
((map (h: mkHost "x86_64-linux" h
- [ ./common.nix ])
+ [ ./common.nix
+ ./users.nix ])
[
"acheron"
"asphodel"
@@ -20,7 +21,13 @@ mergeAttrsList
])
++
(map (h: mkHost "x86_64-linux" h
- [ ./common.nix ./${h}.nix ])
+ [ ./common.nix
+ ./users.nix
+ ./${h}.nix ])
[
"styx"
]))
+// mkHost "x86_64-linux" "ades-live" [
+ ./common.nix
+ ./iso.nix
+]