modules/cluster/deployment-options: add hacks to allow build on hydra

This commit is contained in:
Astro 2022-11-26 02:41:51 +01:00
parent 7bc3b49cc3
commit e91e69b14a
1 changed files with 9 additions and 0 deletions

View File

@ -40,4 +40,13 @@
'';
};
};
config = {
# HACK: Avoid conflicts when building a NixOS configuration on Hydra
boot.loader.grub.enable = false;
fileSystems."/" = {
device = "rootfs";
fsType = "tmpfs";
};
};
}