mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Merge pull request #12086 from bmorphism/master
thinkfan levels option to control actuation points
This commit is contained in:
commit
8225e1b1c1
@ -43,13 +43,7 @@ let
|
|||||||
|
|
||||||
sensor ${cfg.sensor} (0, 10, 15, 2, 10, 5, 0, 3, 0, 3)
|
sensor ${cfg.sensor} (0, 10, 15, 2, 10, 5, 0, 3, 0, 3)
|
||||||
|
|
||||||
(0, 0, 55)
|
${cfg.levels}
|
||||||
(1, 48, 60)
|
|
||||||
(2, 50, 61)
|
|
||||||
(3, 52, 63)
|
|
||||||
(6, 56, 65)
|
|
||||||
(7, 60, 85)
|
|
||||||
(127, 80, 32767)
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in {
|
in {
|
||||||
@ -72,6 +66,22 @@ in {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
levels = mkOption {
|
||||||
|
default = ''
|
||||||
|
(0, 0, 55)
|
||||||
|
(1, 48, 60)
|
||||||
|
(2, 50, 61)
|
||||||
|
(3, 52, 63)
|
||||||
|
(6, 56, 65)
|
||||||
|
(7, 60, 85)
|
||||||
|
(127, 80, 32767)
|
||||||
|
'';
|
||||||
|
description =''
|
||||||
|
Sensor used by thinkfan
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user