summaryrefslogtreecommitdiff
path: root/secrets.nix
blob: a49baeeaf8a96e4dc5a598a8332f2a9ebcb01020 (plain)
1
2
3
4
5
6
7
8
9
10
{
  wifi = {
    iot = {
      passphrase = builtins.readFile "/etc/hostapd/hostapd.iot.pw";
    };
    wan = {
      passphrase = builtins.readFile "/etc/hostapd/hostapd.wan.pw";
    };
  };
}