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