Unverified Commit 04009c66 authored by lassulus's avatar lassulus Committed by GitHub
Browse files

fw-fanctrl: set default strategies (#426756)

parents 3935fce4 bb46a076
Loading
Loading
Loading
Loading
+35 −37
Original line number Diff line number Diff line
@@ -48,12 +48,11 @@ in
          };

          strategies = lib.mkOption {
            default = null;
            default = { };
            description = ''
              Additional strategies which can be used by fw-fanctrl
            '';
            type = lib.types.nullOr (
              lib.types.attrsOf (
            type = lib.types.attrsOf (
              lib.types.submodule {
                options = {
                  fanSpeedUpdateFrequency = lib.mkOption {
@@ -92,7 +91,6 @@ in
                  };
                };
              }
              )
            );
          };
        };