feat: cleaned up some stuff

This commit is contained in:
Nick 2024-10-11 17:38:05 -05:00
parent de63708b61
commit 85c14a33d1
18 changed files with 47 additions and 102 deletions

8
nixos/modules/ssh.nix Executable file
View file

@ -0,0 +1,8 @@
{flake, ...}: let
inherit (flake.config.people) user0;
inherit (flake.config.people.user.${user0}) sshKeys;
in {
users.users.${user0} = {
openssh.authorizedKeys.keys = sshKeys;
};
}