commit 0a3a16d741fa2295393224e45df6d6b6fa64bef9 parent c8c04eb3777c0ed12ef37e65d0251b7d73d4079e Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 22 Nov 2021 17:56:23 +0100 systems/hosts: fix secrets path. Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | systems/hosts/aomi.nix | | | 2 | +- |
M | systems/hosts/wakasu.nix | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/systems/hosts/aomi.nix b/systems/hosts/aomi.nix @@ -148,7 +148,7 @@ in isNormalUser = true; uid = 1018; extraGroups = [ ]; - openssh.authorizedKeys.keys = [ (builtins.readFile ../../../secrets/builder.pub) ]; + openssh.authorizedKeys.keys = [ (builtins.readFile ../../secrets/builder.pub) ]; }; nix.trustedUsers = [ "root" "vincent" "builder" ]; } diff --git a/systems/hosts/wakasu.nix b/systems/hosts/wakasu.nix @@ -101,7 +101,7 @@ in isNormalUser = true; uid = 1018; extraGroups = [ ]; - openssh.authorizedKeys.keys = [ (builtins.readFile ../../../secrets/builder.pub) ]; + openssh.authorizedKeys.keys = [ (builtins.readFile ../../secrets/builder.pub) ]; }; nix.trustedUsers = [ "root" "vincent" "builder" ]; }