Compare commits

...

1 Commits

Author SHA1 Message Date
chn
4c52431675 do not restart anything 2025-05-18 10:14:37 +08:00

View File

@@ -80,6 +80,7 @@ inputs:
(builtins.attrValues nixvirt.instance); (builtins.attrValues nixvirt.instance);
in lib.network.writeXML (base // { ip = base.ip // { dhcp = base.ip.dhcp // { inherit host; }; }; }); in lib.network.writeXML (base // { ip = base.ip // { dhcp = base.ip.dhcp // { inherit host; }; }; });
active = true; active = true;
restart = false;
}]; }];
pools = pools =
[{ [{
@@ -91,6 +92,7 @@ inputs:
target.path = "/var/lib/libvirt/images"; target.path = "/var/lib/libvirt/images";
}; };
active = true; active = true;
restart = false;
# do not define image here, since it still needs to be created manually # do not define image here, since it still needs to be created manually
}]; }];
}; };