forked from Drift/pvv-nixos-config
20 lines
255 B
Nix
20 lines
255 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
users.users.richarah = {
|
||
|
isNormalUser = true;
|
||
|
description = "";
|
||
|
extraGroups = [
|
||
|
"wheel"
|
||
|
"drift"
|
||
|
];
|
||
|
|
||
|
packages = with pkgs; [
|
||
|
docker
|
||
|
];
|
||
|
|
||
|
openssh.authorizedKeys.keys = [
|
||
|
""
|
||
|
];
|
||
|
};
|
||
|
}
|