From e85c3d8c51d08f403fb3c18748d4c93a2b8c6a3b Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 27 Nov 2022 01:38:19 +0100 Subject: [PATCH] prometheus: redeploy --- modules/cluster/deployment-options.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/cluster/deployment-options.nix b/modules/cluster/deployment-options.nix index 31aa761c..4f77f516 100644 --- a/modules/cluster/deployment-options.nix +++ b/modules/cluster/deployment-options.nix @@ -44,9 +44,10 @@ config = { # HACK: Avoid conflicts when building a NixOS configuration on Hydra boot.loader.grub.enable = false; - fileSystems."/" = { + fileSystems."/" = lib.mkDefault { device = "rootfs"; fsType = "tmpfs"; + options = [ "size=50%,mode=0755" ]; }; }; }