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

44 lines
771 B
Nix
Raw Normal View History

2026-02-13 23:27:35 +10:00
{
inputs,
system,
...
2026-02-14 18:16:29 +10:00
} @ args: {
2026-02-18 17:31:22 +10:00
nixpkgs.channels = rec {
2026-02-16 13:51:12 +10:00
default = pkgs;
# nixpkgs
pkgs = {
inherit system;
source = inputs.nixpkgs;
2026-02-18 17:31:22 +10:00
overlays = [
(import ./overlays.nix args)
];
config.allowUnfree = true;
};
2026-02-13 23:27:35 +10:00
# nixpkgs-unstable
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays = with inputs; [
cachyos.overlays.pinned
millennium.overlays.default
2026-02-14 18:16:29 +10:00
(import ./overlays.nix args)
2026-02-13 23:27:35 +10:00
];
config.allowUnfree = true;
};
2026-02-13 23:27:35 +10:00
# nixpkgs-staging
spkgs = {
inherit system;
source = inputs.nixpkgs-staging;
2026-02-18 17:31:22 +10:00
overlays = [
(import ./overlays.nix args)
];
2026-02-13 23:27:35 +10:00
config.allowUnfree = true;
};
};
}