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