Compare commits

...

1 Commits

Author SHA1 Message Date
Adrian Gunnar Lauterer 620e41695e
add user richara 2023-12-02 20:31:19 +01:00
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 = [
""
];
};
}