From 0c6d6c4769c357f71f0f6be4d531d99eaffa94a7 Mon Sep 17 00:00:00 2001 From: Astra Logical Date: Tue, 21 Jul 2026 17:39:10 -0400 Subject: [PATCH] Add ansible key and nopasswd to sudo to enable ansible updates --- modules/hosts/robin/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/hosts/robin/configuration.nix b/modules/hosts/robin/configuration.nix index 6770796..540350a 100644 --- a/modules/hosts/robin/configuration.nix +++ b/modules/hosts/robin/configuration.nix @@ -33,6 +33,10 @@ envfs.enable = true; }; + users.users."nest".openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKitQh7D9pKVECI4+fxr5M1gRzdCbEsrISWeiK4LJ7wd nest@mynest.love" + ]; + # Enable K3s in Agent Mode services.k3s = { enable = true; @@ -134,6 +138,8 @@ ]; }; + security.sudo.wheelNeedsPassword = false; + boot = { loader = { systemd-boot.enable = true;