nixos-configuration/users/vinzenz.nix
2024-10-26 00:04:27 +02:00

19 lines
345 B
Nix

{
config,
pkgs,
lib,
...
}: {
config = {
users.users.vinzenz = {
isNormalUser = true;
name = "vinzenz";
description = "Vinzenz";
home = "/home/vinzenz";
extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman" "nginx"];
shell = pkgs.zsh;
autoSubUidGidRange = true;
};
};
}