11 lines
217 B
Nix
11 lines
217 B
Nix
|
{pkgs, ...}:
|
||
|
{
|
||
|
|
||
|
users.users.rothe = {
|
||
|
isNormalUser = true;
|
||
|
description = "rothe";
|
||
|
extraGroups = [ "networkmanager" "wheel" "video" "scanner" "lp" "incus-admin" "dialout" ];
|
||
|
shell = pkgs.fish;
|
||
|
};
|
||
|
}
|