From e9a3a79fb4fd0d274907f628c144ca2c3ad0be14 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 21 Sep 2023 10:42:37 +0900 Subject: [PATCH] test --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index ea31befb..d6fec60a 100644 --- a/flake.nix +++ b/flake.nix @@ -33,8 +33,6 @@ 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"; }; @@ -59,6 +57,7 @@ }; imageConfigurations = { nixos-rpi4-img = libx.mkImage { hostname = "nixos-rpi4-img"; platform = "aarch64-linux"; format = "sd-aarch64"; }; + nixos-iso-console = libx.mkImage { hostname = "nixos-iso-console"; format = "iso"; }; }; # Devshell for bootstrapping; acessible via 'nix develop'