try inheriting configs

This commit is contained in:
Noah Masur 2025-04-03 10:34:22 -04:00
parent 3684ce4b39
commit b7317a721b

View File

@ -216,13 +216,12 @@
system:
# Get the configurations that we normally use
{
nixosConfigurations = nixosConfigurations.${system};
darwinConfigurations = darwinConfigurations.${system};
inherit nixosConfigurations darwinConfigurations;
homeConfigurations = homeConfigurations.${system};
generators = generators.${system};
}
//
# Get the custom packages that I have placed under the nmasur namespace
# Share the custom packages that I have placed under the nmasur namespace
lib.pkgsBySystem.${system}.nmasur
);