Simplify nixpkgs eval

This commit is contained in:
Greg Hellings
2025-12-18 10:51:09 -06:00
parent 2506557368
commit 36526b4562
5 changed files with 32 additions and 43 deletions
+2 -14
View File
@@ -1,22 +1,10 @@
{
metadata,
overlays,
nixpkgs,
top,
}:
let
pkgs =
system:
(import top.nixunstable {
inherit system;
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
overlays = overlays ++ [
top.nurpkgs.overlays.default
top.vsext.overlays.default
];
});
pkgs = system: nixpkgs.${system};
user =
system: host: username:
top.hmunstable.lib.homeManagerConfiguration {