fix: default to using global pkgs

This commit is contained in:
Jake Hamilton 2024-02-04 12:28:53 -08:00
parent 363035500d
commit 6f2e2819df
No known key found for this signature in database
GPG key ID: 9762169A1B35EA68

View file

@ -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;
};
};
}