diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-02-03 11:50:59 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-02-03 11:50:59 +0100 |
commit | f69cba0bba9e0067b58902f31c545456dc190cc6 (patch) | |
tree | 765b695038189ceb4f34b3654a78db3115eaf91f | |
parent | 27ae21842addf45e26731814d296bd5b4b8d6965 (diff) |
Fix openssh auth keys in user
-rw-r--r-- | roles/base.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/base.nix b/roles/base.nix index 060cca6..46df60c 100644 --- a/roles/base.nix +++ b/roles/base.nix @@ -8,7 +8,7 @@ extraGroups = [ "wheel" ]; shell = pkgs.zsh; packages = with pkgs; [ git helix curl ]; - openssh.authorizedKeys = [ + openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOpAWpymOovrrdaNh43UHNIifi7hyRjtQZl24gqprUT/ jras@tarrel" ]; }; |