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;