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

19 lines
270 B
Nix
Raw Permalink Normal View History

{ ... }:
{
users.users.clerie = {
isNormalUser = true;
2024-05-02 12:10:39 +02:00
group = "clerie";
2023-06-20 11:07:59 +02:00
extraGroups = [
2024-05-02 12:10:39 +02:00
"users"
2023-06-20 11:07:59 +02:00
"wheel"
"dialout"
];
openssh.authorizedKeys.keys = [
(builtins.readFile ./ssh.pub)
];
};
2024-05-02 12:10:39 +02:00
users.groups.clerie = {};
}