summaryrefslogtreecommitdiff
path: root/hosts/ades/default.nix
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-14 15:01:30 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-14 15:01:30 -0500
commit4e970f7cc35d2747af0baa6fca9df5abc18bee43 (patch)
tree4d1b5b1550d487c246cc90e7b0b735989958f6b5 /hosts/ades/default.nix
parentfdd799bf06c5d40cb8a3e8292ee76bff265765f9 (diff)
downloadnixos-config-4e970f7cc35d2747af0baa6fca9df5abc18bee43.tar.gz
nixos-config-4e970f7cc35d2747af0baa6fca9df5abc18bee43.zip
hosts: Rename ades/* to bean/*
Diffstat (limited to 'hosts/ades/default.nix')
-rw-r--r--hosts/ades/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/hosts/ades/default.nix b/hosts/ades/default.nix
deleted file mode 100644
index 82496c1..0000000
--- a/hosts/ades/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ mkHost, hosts, inputs }:
-
-let
- inherit (inputs) nixpkgs;
- inherit (nixpkgs.lib.attrsets)
- mergeAttrsList;
-in
-mergeAttrsList
- ((map (h: mkHost "x86_64-linux" h
- [ ./common.nix
- ./users.nix ])
- [
- "acheron"
- "asphodel"
- "cocytus"
- "elysium"
- "lethe"
- "makaron"
- "oneiron"
- "tartarus"
- ])
- ++
- (map (h: mkHost "x86_64-linux" h
- [ ./common.nix
- ./users.nix
- ./${h}.nix ])
- [
- "styx"
- ]))
-// mkHost "x86_64-linux" "ades-live" [
- ./common.nix
- ./iso.nix
-]