dotfiles/nixos/modules/ssh.nix

9 lines
194 B
Nix
Raw Normal View History

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