mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
21 lines
441 B
Nix
21 lines
441 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
isUserEnabled = builtins.elem "vinzenz" config.my.enabledUsers;
|
|
in {
|
|
config = lib.mkIf isUserEnabled {
|
|
users.users.vinzenz = {
|
|
isNormalUser = true;
|
|
name = "vinzenz";
|
|
description = "Vinzenz";
|
|
home = "/home/vinzenz";
|
|
extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman" "nginx"];
|
|
shell = pkgs.zsh;
|
|
autoSubUidGidRange = true;
|
|
};
|
|
};
|
|
}
|