From 6f2e2819df4770b7ab81827e3cb27b738c7c7721 Mon Sep 17 00:00:00 2001 From: Jake Hamilton Date: Sun, 4 Feb 2024 12:28:53 -0800 Subject: [PATCH] fix: default to using global pkgs --- snowfall-lib/home/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/snowfall-lib/home/default.nix b/snowfall-lib/home/default.nix index e8d1844..6111a7d 100644 --- a/snowfall-lib/home/default.nix +++ b/snowfall-lib/home/default.nix @@ -333,6 +333,10 @@ in # sharedModules = other-modules ++ optional config.snowfallorg.user.${user-name}.home.enable wrapped-user-module; sharedModules = other-modules ++ optional config.snowfallorg.user.${user-name}.home.enable user-module; + + # NOTE: Without this home-manager will instead create its own package set which won't contain the same config and + # user-defined packages/overlays as the flake's nixpkgs channel. + useGlobalPkgs = mkDefault true; }; }; }