nixos-configuration/users/vinzenz.nix

35 lines
611 B
Nix
Raw Normal View History

2024-10-27 12:33:35 +01:00
{ pkgs, ... }:
{
config = {
users.users.vinzenz = {
isNormalUser = true;
name = "vinzenz";
2024-05-25 11:24:00 +02:00
description = "Vinzenz";
home = "/home/vinzenz";
2024-10-27 12:33:35 +01:00
extraGroups = [
"networkmanager"
"wheel"
"games"
"dialout"
"podman"
"nginx"
2024-12-14 11:06:37 +01:00
"adbusers"
2024-10-27 12:33:35 +01:00
];
shell = pkgs.zsh;
2024-05-25 11:24:00 +02:00
autoSubUidGidRange = true;
};
allowedUnfreePackages = [
"vscode-extension-ms-vscode-remote-remote-ssh"
"insync"
"insync-pkg"
"rider"
"pycharm-professional"
"jetbrains-toolbox"
"anydesk"
];
};
2023-09-24 12:39:28 +02:00
}