example rotuer-secrets
This commit is contained in:
parent
943820d4dd
commit
5e45817f98
1 changed files with 14 additions and 0 deletions
14
examples/rotuer-secrets.example.nix
Normal file
14
examples/rotuer-secrets.example.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
rec {
|
||||||
|
wpa_passphrase = "you bring light in";
|
||||||
|
l2tp = {
|
||||||
|
name = "abcde@a.1";
|
||||||
|
password = "NotMyIspPassword";
|
||||||
|
};
|
||||||
|
root = {
|
||||||
|
# mkpasswd -m sha512crypt
|
||||||
|
passwd = "$6$6pt0mpbgcB7kC2RJ$kSBoCYGyi1.qxt7dqmexLj1l8E6oTZJZmfGyJSsMYMW.jlsETxdgQSdv6ptOYDM7DHAwf6vLG0pz3UD31XBfC1";
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
];
|
||||||
|
};
|
||||||
|
root_password = root.passwd;
|
||||||
|
}
|
Loading…
Reference in a new issue