Files
nix-config/modules/hm/core/nixpkgs.nix
2026-09-11 01:59:55 +05:30

16 lines
339 B
Nix

{inputs, ...}: {
flake.modules.homeManager.core = {
lib,
osConfig ? {},
...
}: {
nixpkgs = lib.mkIf (!(osConfig.home-manager.useGlobalPkgs or false)) {
config = {
allowUnfree = true;
joypixels.acceptLicense = true;
};
overlays = builtins.attrValues inputs.self.overlays;
};
};
}