1
0
Fork 0
forked from foxora/nix
flake-foxora/nixpkgs.nix
2026-02-17 14:10:13 +10:00

40 lines
735 B
Nix

{
inputs,
system,
...
} @ args: {
nixpkgs.channels.default = rec {
default = pkgs;
# nixpkgs
pkgs = {
inherit system;
source = inputs.nixpkgs;
overlays = [];
config.allowUnfree = true;
};
# nixpkgs-unstable
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays = with inputs; [
cachyos.overlays.pinned
millennium.overlays.default
# XXX: WARNING: TODO: cerulean will
(import ./overlays.nix args)
];
config.allowUnfree = true;
};
# nixpkgs-staging
spkgs = {
inherit system;
source = inputs.nixpkgs-staging;
overlays = [];
config.allowUnfree = true;
};
};
}