9 lines
165 B
Nix
9 lines
165 B
Nix
{
|
|
users.users.stefan = {
|
|
isNormalUser = true;
|
|
description = "stefan";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
packages = with pkgs; [];
|
|
};
|
|
}
|