From 4d0294d88993129e03c9344ff47667f3e44ebdf2 Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@private.storage> Date: Wed, 8 Nov 2023 14:08:28 +0000 Subject: [PATCH] Tryfix overriding tahoe.ro-storage.unitConfig.Requires Without the lib.mkForce() this is a no-op. --- nixos/modules/private-storage.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/private-storage.nix b/nixos/modules/private-storage.nix index f9521e44..fd64d760 100644 --- a/nixos/modules/private-storage.nix +++ b/nixos/modules/private-storage.nix @@ -130,7 +130,7 @@ in # Tahoe nixos module brings along a single socket for the web api. # That's for the other storage node though. Turn off the integration # with this one. - systemd.services."tahoe.ro-storage".unitConfig.Requires = []; + systemd.services."tahoe.ro-storage".unitConfig.Requires = lib.mkForce []; services.tahoe.nodes."${storage-node-name}" = { package = cfg.tahoe.package; -- GitLab