mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
26 lines
534 B
Nix
26 lines
534 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;
|
|
};
|
|
|
|
allowedUnfreePackages = [
|
|
"vscode-extension-ms-vscode-remote-remote-ssh"
|
|
"insync"
|
|
"insync-pkg"
|
|
|
|
"rider"
|
|
"pycharm-professional"
|
|
"jetbrains-toolbox"
|
|
|
|
"anydesk"
|
|
];
|
|
};
|
|
}
|