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