moved install iso from a package to a host

made funnier functions

gave more modules disable options

updated lint command
This commit is contained in:
Gerg-L 2023-07-28 19:38:59 -04:00
parent ccbc3cc2af
commit c4e6bcb664
9 changed files with 132 additions and 120 deletions

View file

@ -31,9 +31,19 @@ inputs @ {
in {
inherit importAll mkModules listNixFilesRecursive;
withSystem = f:
gerg-utils = config: f:
lib.fold lib.recursiveUpdate {}
(map f ["x86_64-linux"]);
(map (system:
f {
inherit system;
pkgs =
if config == {}
then unstable.legacyPackages.${system}
else
import unstable {
inherit system config;
};
}) ["x86_64-linux"]);
#"x86_64-darwin" "aarch64-linux" "aarch64-darwin"
mkHosts = system: names: