refactor: Separate host types into submodule

This commit is contained in:
2025-12-03 18:57:48 -05:00
committed by Hunter Halloran
parent 04a3562973
commit 0d7f0ca19f
3 changed files with 31 additions and 31 deletions

View File

@@ -17,11 +17,6 @@
lazyvim-nixvim.url = "github:azuwis/lazyvim-nixvim";
};
outputs = inputs@{ self, nixpkgs, home-manager, disko, nixos-generators, lazyvim-nixvim, ... }: {
nixosConfigurations = {
"nix-laptop1" = import ./hosts {
inherit inputs;
hostName = "nix-laptop1";
};
};
nixosConfigurations = import ./hosts { inherit inputs; };
};
}