From 3f12104f71f42bcf1fd0f53867b57e89f6a86f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Fri, 23 Aug 2024 14:31:13 +0200 Subject: [PATCH] fix: create homes for users --- nixos/common.nix | 2 ++ 1 file changed, 2 insertions(+) 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" ];