diff options
Diffstat (limited to 'modules/nixos/personal/user.nix')
| -rw-r--r-- | modules/nixos/personal/user.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/nixos/personal/user.nix b/modules/nixos/personal/user.nix index 29a35cb..ea0ce8c 100644 --- a/modules/nixos/personal/user.nix +++ b/modules/nixos/personal/user.nix @@ -26,9 +26,9 @@ in users.users."${cfg.name}" = { isNormalUser = true; extraGroups = [ "wheel" ] ++ lib.optional config.networking.networkmanager.enable "networkmanager"; - openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK4wGbl3++lqCjLUhoRyABBrVEeNhIXYO4371srkRoyq qaristote@latitude-7490" - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEvPsKWQXX/QsFQjJU0CjG4LllvUVZme45d9JeS/yhLt qaristote@precision-3571" + openssh.authorizedKeys.keys = with config.personal.lib.publicKeys.ssh; [ + latitude-7490 + precision-3571 ]; }; |
