disable autoUpdate in microvms

This commit is contained in:
Astro 2022-06-18 04:24:15 +02:00
parent b2a4fb57d6
commit 903e10ae99
6 changed files with 3 additions and 6 deletions

View File

@ -9,7 +9,6 @@ in {
mounts = [ "etc" "home" "var"];
};
c3d2.isInHq = false;
c3d2.autoUpdate = true;
services.openssh.enable = true;
# noXlibs breaks cairo:

View File

@ -2,7 +2,6 @@
{
c3d2 = {
autoUpdate = true;
deployment = {
server = "server10";
mounts = [ "etc" "home" "var"];

View File

@ -6,7 +6,6 @@
mounts = [ "etc" "var"];
};
c3d2.autoUpdate = true;
networking.hostName = "mucbot";
users.users.tigger = {

View File

@ -12,7 +12,6 @@ let
in {
c3d2 = {
isInHq = false;
autoUpdate = true;
deployment = {
server = "server10";
mounts = [ "etc" "home" "var"];

View File

@ -8,8 +8,6 @@
networking.hostName = "spaceapi";
networking.firewall.enable = false;
c3d2.autoUpdate = true;
services.spaceapi = { enable = true; };
# HACK for ekg-json-0.1.0.6 nixos-22.05

View File

@ -143,5 +143,8 @@ in
};
}) {} nets;
};
# autoupdates do not make sense inside MicroVMs with read-only /nix/store
c3d2.autoUpdate = false;
};
}