about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2022-07-14 17:47:33 +0200
committeraszlig <aszlig@nix.build>2022-07-14 17:53:43 +0200
commit30f3970a0901c877f57be6ef69bab393cd78e326 (patch)
tree4b803d1e7cd2afa257f01443ce09e095bb56f865 /modules
parentee01aaecfef37fa32bb1a1d8e26892edaacd89e6 (diff)
core/tests: Don't access removed graphite options
The options in services.graphite.api and services.graphite.beacon got[1]
removed[2] in nixpkgs because the upstream project doesn't seem to be
maintained anymore.

More information can be found at:

https://github.com/NixOS/nixpkgs/pull/180950

[1]: https://github.com/NixOS/nixpkgs/commit/1f18d441063208968f38bed0fe5
[2]: https://github.com/NixOS/nixpkgs/commit/ada1d87767b8826ea6233952279

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'modules')
-rw-r--r--modules/core/tests.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/core/tests.nix b/modules/core/tests.nix
index 920417ca..7d2e3a66 100644
--- a/modules/core/tests.nix
+++ b/modules/core/tests.nix
@@ -257,8 +257,7 @@ let
     }
     { check = with config.services.graphite; carbon.enableCache
            || carbon.enableAggregator || carbon.enableRelay
-           || web.enable || api.enable || seyren.enable
-           || beacon.enable;
+           || web.enable || seyren.enable;
       path  = ["nixos" "graphite"];
     }
     { check = config.services.graylog.enable;