Files
nix-config/modules/nixos/core/nixpkgs.nix
2026-05-06 19:48:33 +05:30

13 lines
233 B
Nix

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