summaryrefslogtreecommitdiff
path: root/util/host.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-21 22:57:19 -0400
committerseth <[email protected]>2023-03-21 22:57:19 -0400
commitf5681326f3c01e52cbf6cbc625224c1a95f8fe17 (patch)
tree5045cd9178eb789a6549118585828a350353d5a0 /util/host.nix
parenta97b232e631242e8fa951c8c862270dc6a57f5cd (diff)
add config for turret (openwrt router)
Diffstat (limited to 'util/host.nix')
-rw-r--r--util/host.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/host.nix b/util/host.nix
index 750dffa..bfaa66e 100644
--- a/util/host.nix
+++ b/util/host.nix
@@ -36,7 +36,7 @@
};
mapHosts = hosts:
- mapFilterDirs ../hosts (_: v: v == "directory") (name: _:
+ mapFilterDirs ../hosts (n: v: v == "directory" && n != "turret") (name: _:
mkHost {
inherit name;
inherit (hosts.${name}) modules system stateVersion pkgs;