1
0
Fork 0
nixfiles/users/isa/default.nix

11 lines
145 B
Nix
Raw Normal View History

2023-05-30 17:34:06 +02:00
{ ... }:
{
users.users.isa = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
2023-12-07 20:23:11 +01:00
(builtins.readFile ./ssh.pub)
2023-05-30 17:34:06 +02:00
];
};
}