Compare commits

..

No commits in common. "22ab6fa3de48ae654eda156783349d0dbf9dcfaa" and "2ce243c3213c5fb7b9b09a75a8a80a9d4493e620" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View file

@ -20,10 +20,6 @@
]; ];
virtualisation.vmVariant.virtualisation = { virtualisation.vmVariant.virtualisation = {
memorySize = 2048;
cores = 3;
graphics = false;
forwardPorts = [ forwardPorts = [
# ssh # ssh
{ {

View file

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