summaryrefslogtreecommitdiff
path: root/util/host.nix
diff options
context:
space:
mode:
Diffstat (limited to 'util/host.nix')
-rw-r--r--util/host.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/host.nix b/util/host.nix
index bfaa66e..a8af69f 100644
--- a/util/host.nix
+++ b/util/host.nix
@@ -40,5 +40,9 @@
mkHost {
inherit name;
inherit (hosts.${name}) modules system stateVersion pkgs;
+ specialArgs =
+ if builtins.hasAttr "specialArgs" hosts.${name}
+ then hosts.${name}.specialArgs
+ else {};
});
}