nix/overlay.nix
2023-04-19 16:41:56 +10:00

13 lines
319 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 {};
# }