summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2023-03-25 16:08:07 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2023-03-26 23:10:57 +0200
commit102dd41888bfae9e86233d384613756407b4ce57 (patch)
tree14b07cdae72b680cdbd0a55ae7a2721f180aeb09 /flake.nix
parent27baf9433f65d1f645a4899faa08922edb6147fb (diff)
add basic ap stuff: hostapd, dhcpd
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;
+ };
};
};
};