dotfiles/modules/nixos/core/ssh/default.nix

16 lines
207 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{
flake,
config,
...
}:
let
inherit (flake.config.people) user0;
in
{
users.users = {
2025-10-01 19:51:55 -05:00
${user0} = {
openssh.authorizedKeys.keys = flake.config.people.users.${user0}.sshKeys;
2025-10-01 19:51:55 -05:00
};
};
}