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:
@@ -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; [];
|
||||
# };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user