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

12 lines
231 B
Nix

{inputs, ...}: {
flake.modules.nixos.core = {
nixpkgs = {
config = {
allowUnfree = true;
joypixels.acceptLicense = true;
};
overlays = builtins.attrValues inputs.self.overlays;
};
};
}