diff --git a/examples/arhcive.nix b/examples/arhcive.nix index 360e8e84f..5ed6ad149 100644 --- a/examples/arhcive.nix +++ b/examples/arhcive.nix @@ -145,7 +145,7 @@ in rec { }; users.root = { - passwd = lib.mkForce secrets.root_password; + passwd = lib.mkForce secrets.root.passwd; # openssh.authorizedKeys.keys = [ # (builtins.readFile "/home/dan/.ssh/id_rsa.pub") # ]; diff --git a/examples/extneder.nix b/examples/extneder.nix index f640f0ed9..1b2fab5d2 100644 --- a/examples/extneder.nix +++ b/examples/extneder.nix @@ -131,6 +131,6 @@ in rec { dependencies = [services.dhcpc]; }; - users.root.passwd = lib.mkForce secrets.root_password; + users.root.passwd = lib.mkForce secrets.root.passwd; defaultProfile.packages = with pkgs; [nftables strace tcpdump swconfig]; } diff --git a/examples/rotuer-secrets.example.nix b/examples/rotuer-secrets.example.nix index 368a930de..0917d9a87 100644 --- a/examples/rotuer-secrets.example.nix +++ b/examples/rotuer-secrets.example.nix @@ -1,4 +1,4 @@ -rec { +{ wpa_passphrase = "you bring light in"; l2tp = { name = "abcde@a.1"; @@ -10,9 +10,9 @@ rec { openssh.authorizedKeys.keys = [ ]; }; - root_password = root.passwd; + lan = { - prefix = "10.8.0"; # "192.168.8"; + prefix = "10.8.0"; }; }