Unverified Commit a5eaa1df authored by PopeRigby's avatar PopeRigby Committed by GitHub
Browse files

nixos/scrutiny: enable collector by default if scrutiny is enabled (#329069)

parent 19bc619c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -110,7 +110,10 @@ in
      };

      collector = {
        enable = mkEnableOption "the Scrutiny metrics collector";
        enable = mkEnableOption "the Scrutiny metrics collector" // {
          default = cfg.enable;
          defaultText = lib.literalExpression "config.services.scrutiny.enable";
        };

        package = mkPackageOption pkgs "scrutiny-collector" { };