forked from DGNum/liminix
1206d02200
this is step one towards getting rid of rotuer-secrets completely and turning rotuer into a "profile" module that can be less hackily customised for other people's networks
19 lines
393 B
Nix
19 lines
393 B
Nix
{
|
|
wpa_passphrase = "you bring light in";
|
|
ssid = "liminix";
|
|
l2tp = {
|
|
name = "abcde@a.1";
|
|
password = "NotMyIspPassword";
|
|
};
|
|
root = {
|
|
# mkpasswd -m sha512crypt
|
|
passwd = "$6$6pt0mpbgcB7kC2RJ$kSBoCYGyi1.qxt7dqmexLj1l8E6oTZJZmfGyJSsMYMW.jlsETxdgQSdv6ptOYDM7DHAwf6vLG0pz3UD31XBfC1";
|
|
openssh.authorizedKeys.keys = [
|
|
];
|
|
};
|
|
|
|
lan = {
|
|
prefix = "10.8.0";
|
|
};
|
|
|
|
}
|