nix/overlay.nix
2023-04-21 01:58:39 +10:00

13 lines
329 B
Nix

{inputs, ...}: {
additions = final: _prev: import ./pkgs {pkgs = final;};
unstable-pkgs = final: _prev: {
unstable = import inputs.nixpkgs {
system = final.system;
config.allowUnfree = true;
};
};
}
# inputs: _: prev: {
# system76-scheduler = prev.callPackage ./syspkgs/system76-scheduler.nix {};
# }