Update 'configuration.nix'
This commit is contained in:
parent
7c78584b09
commit
170564312c
1 changed files with 39 additions and 3 deletions
|
@ -89,11 +89,47 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.SuS = {
|
users.users.Guest = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
isSystemUser = false;
|
isSystemUser = false;
|
||||||
home = "/home/SuS";
|
home = "/home/Guest";
|
||||||
description = "SuS";
|
description = "Guest";
|
||||||
|
extraGroups = [ "nogroup" ];
|
||||||
|
initialPassword = "";
|
||||||
|
packages = with pkgs; [
|
||||||
|
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.Projectuser1 = {
|
||||||
|
isNormalUser = true;
|
||||||
|
isSystemUser = false;
|
||||||
|
home = "/home/Projectuser1";
|
||||||
|
description = "Projectuser1";
|
||||||
|
extraGroups = [ "nogroup" ];
|
||||||
|
initialPassword = "";
|
||||||
|
packages = with pkgs; [
|
||||||
|
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.Projectuser2 = {
|
||||||
|
isNormalUser = true;
|
||||||
|
isSystemUser = false;
|
||||||
|
home = "/home/Projectuser2";
|
||||||
|
description = "Projectuser2";
|
||||||
|
extraGroups = [ "nogroup" ];
|
||||||
|
initialPassword = "";
|
||||||
|
packages = with pkgs; [
|
||||||
|
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.Projectuser3 = {
|
||||||
|
isNormalUser = true;
|
||||||
|
isSystemUser = false;
|
||||||
|
home = "/home/Projectuser3";
|
||||||
|
description = "Projectuser3";
|
||||||
extraGroups = [ "nogroup" ];
|
extraGroups = [ "nogroup" ];
|
||||||
initialPassword = "";
|
initialPassword = "";
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue