diff options
author | Alan Pearce | 2024-11-30 18:45:21 +0100 |
---|---|---|
committer | Alan Pearce | 2024-11-30 18:45:21 +0100 |
commit | d1757e3baf123a7339848f55c6402022a3911b8a (patch) | |
tree | 624d359306d4f6a21888c17eb6bbc384cf21c821 | |
parent | e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3 (diff) | |
download | nixfiles-d1757e3baf123a7339848f55c6402022a3911b8a.tar.lz nixfiles-d1757e3baf123a7339848f55c6402022a3911b8a.tar.zst nixfiles-d1757e3baf123a7339848f55c6402022a3911b8a.zip |
fix home-manager failing to install to newer nix profile
-rw-r--r-- | user/settings/base.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/user/settings/base.nix b/user/settings/base.nix index 837f5e3f..f29d43aa 100644 --- a/user/settings/base.nix +++ b/user/settings/base.nix @@ -13,6 +13,7 @@ html.enable = true; }; home.preferXdgDirectories = true; + nix.settings.use-xdg-base-directories = true; home.sessionVariables = let conf = config.xdg.configHome; |