we can compile!

This commit is contained in:
Reid 2024-02-28 00:07:58 -08:00
parent af804c63f8
commit 06b42a1aa6
4 changed files with 7 additions and 9 deletions

View file

@ -10,7 +10,7 @@
outputs = inputs @ { self, nixpkgs, ... }:
let
inherit (lib.my) mapModules mapModulesRec mkHost;
inherit (lib.my) mapModules mapModulesRec mapHosts;
system = "aarch64-linux";
mkPkgs = pkgs: extraOverlays:
@ -43,6 +43,6 @@
nixosModules = mapModulesRec ./modules import;
nixosConfigurations = mapModules ./hosts (host: mkHost host { inherit system; });
nixosConfigurations = mapHosts ./hosts {};
};
}