flake: enable registry entries for stable and unstable

This commit is contained in:
Aaron Bieber 2023-01-04 18:43:54 -07:00
parent 4b76c15485
commit 4e860fb29d
No known key found for this signature in database

View File

@ -147,7 +147,11 @@
modules = hostBase.modules ++ extraMods ++ [{
nix = {
registry.nixpkgs.flake = sysBase;
nixPath = [ "nixpkgs=${sysBase}" ];
registry.stable.flake = stable;
registry.unstable.flake = unstable;
nixPath = [
"nixpkgs=${sysBase}"
];
};
}] ++ [ buildVer (./. + "/hosts/${name}") ]
++ [{ nixpkgs.overlays = overlays; }];