summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 69898bc..1c7fc51 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,9 +14,11 @@
in {
kerberos = nixpkgs.lib.nixosSystem {
inherit system;
- modules = commonModules
- ++ [ ./config ];
- specialArgs = { inherit nixos-hardware; };
+ modules = commonModules ++ [ ./config ];
+ specialArgs = {
+ inherit nixos-hardware;
+ secrets = import ./secrets.nix;
+ };
};
};
};