dotfiles/nixos/modules/ssh.nix

9 lines
195 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{flake, ...}: let
inherit (flake.config.people) user0;
2024-11-04 20:49:43 -06:00
inherit (flake.config.people.users.${user0}) sshKeys;
2024-10-06 15:25:05 -05:00
in {
users.users.${user0} = {
openssh.authorizedKeys.keys = sshKeys;
};
}