mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
19 lines
345 B
Nix
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;
|
|
};
|
|
};
|
|
}
|