nixos/influxdb: use mkEnableOption

This commit is contained in:
Atemu
2026-01-26 22:15:21 +01:00
parent 5772a253ed
commit 138743af11
@@ -17,11 +17,7 @@ in
services.influxdb = {
enable = lib.mkOption {
default = false;
description = "Whether to enable the influxdb server";
type = lib.types.bool;
};
enable = lib.mkEnableOption "the influxdb server";
package = lib.mkPackageOption pkgs "influxdb" { };