dotfiles/nixos/modules/ssh.nix
2024-10-11 17:38:05 -05:00

8 lines
194 B
Nix
Executable file

{flake, ...}: let
inherit (flake.config.people) user0;
inherit (flake.config.people.user.${user0}) sshKeys;
in {
users.users.${user0} = {
openssh.authorizedKeys.keys = sshKeys;
};
}