From b6218714f3a33869efbb0bda6c883294d4ae6b66 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 21 Sep 2023 10:40:56 +0900 Subject: [PATCH] test --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 66bda67d..ea31befb 100644 --- a/flake.nix +++ b/flake.nix @@ -33,6 +33,8 @@ libx = import ./lib { inherit inputs outputs stateVersion hmStateVersion; }; in { nixosConfigurations = { + # ISOs + nixos-iso-console = libx.mkHost { hostname = "nixos-iso-console"; }; # Virtual Machines nixos-vm-01 = libx.mkHost { hostname = "nixos-vm-01"; }; nixos-osaka-vultr-01 = libx.mkHost { hostname = "nixos-osaka-vultr-01"; }; @@ -57,7 +59,6 @@ }; imageConfigurations = { nixos-rpi4-img = libx.mkImage { hostname = "nixos-rpi4-img"; platform = "aarch64-linux"; format = "sd-aarch64"; }; - nixos-iso-console = libx.mkHost { hostname = "nixos-iso-console"; }; }; # Devshell for bootstrapping; acessible via 'nix develop'