dotfiles/nixos/modules/ssh.nix

15 lines
221 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{flake, ...}: let
2025-01-08 19:06:14 -06:00
inherit
(flake.config.people)
user0
;
inherit
(flake.config.people.users.${user0})
sshKeys
;
2024-10-06 15:25:05 -05:00
in {
users.users.${user0} = {
openssh.authorizedKeys.keys = sshKeys;
};
}