mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 13:32:15 -06:00
15 lines
207 B
Nix
Executable file
15 lines
207 B
Nix
Executable file
{
|
|
flake,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
inherit (flake.config.people) user0;
|
|
in
|
|
{
|
|
users.users = {
|
|
${user0} = {
|
|
openssh.authorizedKeys.keys = flake.config.people.users.${user0}.sshKeys;
|
|
};
|
|
};
|
|
}
|