From 170564312cd34da7c835f0afc67d72c0650462b6 Mon Sep 17 00:00:00 2001 From: MK Date: Fri, 24 Feb 2023 13:25:06 +0100 Subject: [PATCH] Update 'configuration.nix' --- configuration.nix | 42 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 76bbb7e..a416aef 100644 --- a/configuration.nix +++ b/configuration.nix @@ -89,11 +89,11 @@ ]; }; - users.users.SuS = { + users.users.Guest = { isNormalUser = true; isSystemUser = false; - home = "/home/SuS"; - description = "SuS"; + home = "/home/Guest"; + description = "Guest"; extraGroups = [ "nogroup" ]; initialPassword = ""; packages = with pkgs; [ @@ -101,6 +101,42 @@ ]; }; + 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" ]; + initialPassword = ""; + packages = with pkgs; [ + + ]; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;