nixos-configuration/users/vinzenz.nix

14 lines
322 B
Nix
Raw Normal View History

2024-10-26 16:43:08 +02:00
{pkgs, ...}: {
config = {
users.users.vinzenz = {
isNormalUser = true;
name = "vinzenz";
2024-05-25 11:24:00 +02:00
description = "Vinzenz";
home = "/home/vinzenz";
2024-05-25 11:24:00 +02:00
extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman" "nginx"];
shell = pkgs.zsh;
2024-05-25 11:24:00 +02:00
autoSubUidGidRange = true;
};
};
2023-09-24 12:39:28 +02:00
}