nixos-configuration/modules/users/vinzenz.nix

21 lines
441 B
Nix
Raw Normal View History

2023-09-24 12:39:28 +02:00
{
config,
pkgs,
lib,
...
}: let
isUserEnabled = builtins.elem "vinzenz" config.my.enabledUsers;
in {
config = lib.mkIf isUserEnabled {
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
}