summaryrefslogtreecommitdiff
path: root/systems/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-10 07:54:17 -0500
committerseth <[email protected]>2023-12-10 07:54:25 -0500
commite8a112be9a0bf067c8acb3a26cfd183c2f57c513 (patch)
treec3b063cc3a8abbeb3e82ca83eb53cc55e86fd569 /systems/default.nix
parentb68737baf9f8ff6cb6f42b3781b995598bc8ba80 (diff)
systems+modules: add secretsDir specialArg
Diffstat (limited to 'systems/default.nix')
-rw-r--r--systems/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/systems/default.nix b/systems/default.nix
index e44b096..2f8c277 100644
--- a/systems/default.nix
+++ b/systems/default.nix
@@ -14,7 +14,10 @@
(builtins.removeAttrs args ["builder"])
// {
modules = args.modules ++ [./${name}];
- specialArgs = {inherit inputs self;};
+ specialArgs = {
+ inherit inputs self;
+ secretsDir = ../secrets/${name};
+ };
}
);