nixos-configuration/users/vinzenz.nix
2024-10-26 16:43:08 +02:00

14 lines
322 B
Nix

{pkgs, ...}: {
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;
};
};
}