różne zmiany i przywrócenie default profilu, a usunięcie mojego bezpośredniego profilu z kodu źródłowego.

This commit is contained in:
installer
2024-12-27 14:21:11 +01:00
parent 8067e43b6d
commit 9f061f73c4
5 changed files with 0 additions and 926 deletions

View File

@@ -1,36 +0,0 @@
{
pkgs,
username,
...
}: let
inherit (import ./variables.nix) gitUsername;
in {
users.users = {
"${username}" = {
homeMode = "755";
isNormalUser = true;
description = "${gitUsername}";
extraGroups = [
"networkmanager"
"wheel"
"libvirtd"
"scanner"
"lp"
"docker"
];
shell = pkgs.bash;
ignoreShellProgramCheck = true;
packages = with pkgs; [
];
};
# "newuser" = {
# homeMode = "755";
# isNormalUser = true;
# description = "New user account";
# extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
# shell = pkgs.bash;
# ignoreShellProgramCheck = true;
# packages = with pkgs; [];
# };
};
}