restructure config

This commit is contained in:
atagen 2023-09-28 16:33:39 +10:00
parent 1c6a1a4305
commit ef0c9157f4
46 changed files with 656 additions and 716 deletions

15
util/overlay.nix Normal file
View file

@ -0,0 +1,15 @@
{inputs, ...}: {
additions = final: _prev: import ../.old/pkgs {pkgs = final;};
pkg-sets = final: prev: {
unstable = import inputs.nixpkgs {
system = final.system;
config.allowUnfree = true;
};
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};
};
rice = import ./rice.nix;
}