rename test vm to ha vm

This commit is contained in:
Sveske-Juice 2025-05-27 13:20:11 +02:00
parent 1cbee388b7
commit 22ab6fa3de

View file

@ -14,7 +14,7 @@
...
} @ inputs:
inputs.flake-utils.lib.eachDefaultSystem (system: rec {
nixosConfigurations.test = nixpkgs.lib.nixosSystem {
nixosConfigurations.homeassistant-vm = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs.inputs = inputs;
modules = [
@ -24,7 +24,7 @@
apps = {
default = {
type = "app";
program = "${nixosConfigurations.test.config.system.build.vm}/bin/run-nixos-vm";
program = "${nixosConfigurations.homeassistant-vm.config.system.build.vm}/bin/run-nixos-vm";
};
};
});