refactor host creation #62

Merged
kalipso merged 11 commits from host-builder into staging 2025-01-23 16:48:03 +01:00
3 changed files with 2 additions and 2 deletions
Showing only changes of commit c42ce41c71 - Show all commits

View File

@@ -96,7 +96,7 @@ let
inputsMod = inputs // { malobeo = self; };
hosts = import ./modules/host_builer.nix {};
hosts = import ./modules/host_builder.nix {};
in
builtins.mapAttrs (host: settings: nixosSystem {
system = if (settings.type == "rpi") then "aarch64-linux" else "x86_64-linux";

View File

@@ -231,7 +231,7 @@ in (utils.lib.eachSystem (builtins.filter filter_system utils.lib.defaultSystems
})) // (
let
utils = import ./machines/modules/host_builer.nix ( inputs // { inherit inputs; self = self; });
utils = import ./machines/modules/host_builder.nix ( inputs // { inherit inputs; self = self; });
hosts = import ./machines/hosts.nix ( inputs // { inherit inputs; self = self; });
in
{