diff --git a/nixos/common.nix b/nixos/common.nix index 6138308..fc08ed3 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -76,6 +76,7 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.khais = { + createHome = true; initialPassword = "asunarovow"; isNormalUser = true; description = "Khaïs COLIN"; @@ -84,6 +85,7 @@ }; users.users.guest = { + createHome = true; isNormalUser = true; description = "Guest Account"; extraGroups = [ "networkmanager" ];