1
0
Fork 0

add user richara

This commit is contained in:
Adrian Gunnar Lauterer 2023-12-02 20:31:19 +01:00
parent c8d383c9ab
commit 620e41695e
Signed by untrusted user: adriangl
GPG Key ID: D33368A59745C2F0
1 changed files with 19 additions and 0 deletions

19
users/richarah.nix Normal file
View File

@ -0,0 +1,19 @@
{ pkgs, ... }:
{
users.users.richarah = {
isNormalUser = true;
description = "";
extraGroups = [
"wheel"
"drift"
];
packages = with pkgs; [
docker
];
openssh.authorizedKeys.keys = [
""
];
};
}