From fc18681a5db9100b0942cbef8e297f965ff87d99 Mon Sep 17 00:00:00 2001 From: DerGrumpf Date: Wed, 26 Nov 2025 18:24:31 +0100 Subject: [PATCH] Added --- users/core.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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