1
0
Fork 0
forked from foxora/nix
flake-foxora/nixpkgs.nix

28 lines
529 B
Nix

{
inputs,
system,
...
}: {
nixpkgs.channels.default = {
# nixpkgs-unstable
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays = with inputs; [
cachyos.overlays.pinned
millennium.overlays.default
(import ./overlays.nix {inherit inputs;})
];
config.allowUnfree = true;
};
# nixpkgs-staging
spkgs = {
inherit system;
source = inputs.nixpkgs-staging;
overlays = [];
config.allowUnfree = true;
};
};
}