dea-files/nixpkgs.nix

33 lines
561 B
Nix
Raw Normal View History

2026-03-07 13:08:30 +10:00
{
inputs,
system,
...
} @ args: {
nixpkgs.channels = {
default = {
inherit system;
overlays = [
(import ./overlays args)
];
config = {
allowUnfree = true;
allowBroken = false;
};
};
# nixpkgs-unstable (upkgs)
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays = [
inputs.millennium.overlays.default
(import ./overlays args)
];
config = {
allowUnfree = true;
allowBroken = false;
};
};
};
}