From d22e4468607c1ce84b153cea4c36f93683970fa4 Mon Sep 17 00:00:00 2001 From: Stefan Kempinger Date: Thu, 2 Apr 2026 23:12:25 +0200 Subject: [PATCH] Increase tmpfs size and disable wud container --- heimserver/configuration.nix | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/heimserver/configuration.nix b/heimserver/configuration.nix index d45ec88..fc1e848 100644 --- a/heimserver/configuration.nix +++ b/heimserver/configuration.nix @@ -1,4 +1,4 @@ -# Edit this configuration file to define what should be installed on + # Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). @@ -464,7 +464,7 @@ "--shm-size=512m" "--network=host" "--privileged" - "--mount=type=tmpfs,target=/tmp/cache,tmpfs-size=4000000000" + "--mount=type=tmpfs,target=/tmp/cache,tmpfs-size=6000000000" ]; }; containers.netflow2ng = { @@ -483,20 +483,20 @@ "--network=host" ]; }; - containers.wud = { - # Note: The image will not be updated on rebuilds, unless the version label changes - image = "ghcr.io/getwud/wud"; - volumes = [ - "/var/run/podman/podman.sock:/var/run/docker.sock" - ]; - environment = { - WUD_SERVER_PORT = "8089"; - WUD_TRIGGER_COMMAND_LOCAL_CMD = "echo \${display_name} can be updated to \${update_kind_remote_value}"; - }; - extraOptions = [ - "--network=host" - ]; - }; + # containers.wud = { + # # Note: The image will not be updated on rebuilds, unless the version label changes + # image = "ghcr.io/getwud/wud"; + # volumes = [ + # "/var/run/podman/podman.sock:/var/run/docker.sock" + # ]; + # environment = { + # WUD_SERVER_PORT = "8089"; + # WUD_TRIGGER_COMMAND_LOCAL_CMD = "echo \${display_name} can be updated to \${update_kind_remote_value}"; + # }; + # extraOptions = [ + # "--network=host" + # ]; + # }; }; services.ntopng = {