forked from Drift/pvv-nixos-config
add user richara
This commit is contained in:
parent
c8d383c9ab
commit
620e41695e
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
users.users.richarah = {
|
||||
isNormalUser = true;
|
||||
description = "";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"drift"
|
||||
];
|
||||
|
||||
packages = with pkgs; [
|
||||
docker
|
||||
];
|
||||
|
||||
openssh.authorizedKeys.keys = [
|
||||
""
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue