This commit is contained in:
iFargle 2023-09-21 10:40:56 +09:00
parent 48b5319d0f
commit b6218714f3

View file

@ -33,6 +33,8 @@
libx = import ./lib { inherit inputs outputs stateVersion hmStateVersion; }; libx = import ./lib { inherit inputs outputs stateVersion hmStateVersion; };
in { in {
nixosConfigurations = { nixosConfigurations = {
# ISOs
nixos-iso-console = libx.mkHost { hostname = "nixos-iso-console"; };
# Virtual Machines # Virtual Machines
nixos-vm-01 = libx.mkHost { hostname = "nixos-vm-01"; }; nixos-vm-01 = libx.mkHost { hostname = "nixos-vm-01"; };
nixos-osaka-vultr-01 = libx.mkHost { hostname = "nixos-osaka-vultr-01"; }; nixos-osaka-vultr-01 = libx.mkHost { hostname = "nixos-osaka-vultr-01"; };
@ -57,7 +59,6 @@
}; };
imageConfigurations = { imageConfigurations = {
nixos-rpi4-img = libx.mkImage { hostname = "nixos-rpi4-img"; platform = "aarch64-linux"; format = "sd-aarch64"; }; 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' # Devshell for bootstrapping; acessible via 'nix develop'