diff --git a/routers/default.nix b/routers/default.nix index 3da9e5f..9ee36cf 100644 --- a/routers/default.nix +++ b/routers/default.nix @@ -17,7 +17,7 @@ liminix-config = import ./routers/vanilla/configuration.nix { inherit inputs; }; device = (import "${inputs.liminix}/devices/gl-mt300a/default.nix"); }; - fax-router = import "${inputs.liminix}default.nix" { + fax-router = import "${inputs.liminix}/default.nix" { device = (import "${inputs.liminix}/devices/gl-ar750"); liminix-config = import ./fax-router/configuration.nix { inherit inputs; }; }; diff --git a/routers/fax-router/router-secrets.nix b/routers/fax-router/router-secrets.nix new file mode 100644 index 0000000..58e7d29 --- /dev/null +++ b/routers/fax-router/router-secrets.nix @@ -0,0 +1,17 @@ +{ + 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"; + }; +}