diff --git a/users/core.nix b/users/core.nix index f8b4b0f..179d8a5 100644 --- a/users/core.nix +++ b/users/core.nix @@ -1,10 +1,10 @@ -{ username, ... }: +{ lib, username, ... }: { # Home Manager needs a bit of information about you and the # paths it should manage. home = { inherit username; - homeDirectory = "/home/${username}"; + homeDirectory = lib.mkForce "/home/${username}"; # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage