diff --git a/users.nix b/users.nix index fc56c82..fcf4c1b 100644 --- a/users.nix +++ b/users.nix @@ -1,10 +1,16 @@ {config, pkgs, ...}: { + imports = [ ]; + users.users.giulio = { description = "Giulio De Pasquale"; isNormalUser = true; shell = pkgs.zsh; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. }; + + home-manager.users.giulio = { + imports = [ ./home ]; + }; }