summaryrefslogtreecommitdiff
path: root/secrets.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2023-04-13 14:20:22 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2023-04-13 14:20:22 +0200
commitdbb6444b03bacb9479560e8cd87ebe2776d348b3 (patch)
tree9a3bc95bfdbc63bc1695af987e7b0377b9661c37 /secrets.nix
parent25494ff6c1d9efbc04549a51186bc4fb15c63b30 (diff)
networking: restructure personal.networking modules
Diffstat (limited to 'secrets.nix')
-rw-r--r--secrets.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/secrets.nix b/secrets.nix
index 542fb40..a49baee 100644
--- a/secrets.nix
+++ b/secrets.nix
@@ -1,10 +1,10 @@
{
wifi = {
- "2ghz" = {
- passphrase = builtins.readFile "/etc/hostapd/hostapd.2ghz.pw";
+ iot = {
+ passphrase = builtins.readFile "/etc/hostapd/hostapd.iot.pw";
};
- "5ghz" = {
- passphrase = builtins.readFile "/etc/hostapd/hostapd.5ghz.pw";
+ wan = {
+ passphrase = builtins.readFile "/etc/hostapd/hostapd.wan.pw";
};
};
}