mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
12 lines
231 B
Nix
12 lines
231 B
Nix
{inputs, ...}: {
|
|
flake.modules.nixos.core = {
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
joypixels.acceptLicense = true;
|
|
};
|
|
overlays = builtins.attrValues inputs.self.overlays;
|
|
};
|
|
};
|
|
}
|