summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-12-22 22:48:25 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-12-22 22:48:25 +0100
commit725f0caeb0051bb8b2eaf20cd51ef1297dcfe122 (patch)
tree415537ce2975afda1e2edd6a982a667be3f9b0ce
parent18be1760628cea4648e90b41b536140b8ef5aa45 (diff)
Change fan curve
-rw-r--r--hosts/apocalypse/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/hosts/apocalypse/default.nix b/hosts/apocalypse/default.nix
index 5437a32..e8fc86c 100644
--- a/hosts/apocalypse/default.nix
+++ b/hosts/apocalypse/default.nix
@@ -104,4 +104,55 @@
PrintMotd = true;
};
};
+
+ services.thinkfan = {
+ enable = true;
+ levels = [
+ [
+ 0
+ 0
+ 55
+ ]
+ [
+ 1
+ 48
+ 60
+ ]
+ [
+ 2
+ 50
+ 65
+ ]
+ [
+ 3
+ 55
+ 67
+ ]
+ [
+ 4
+ 56
+ 68
+ ]
+ [
+ 5
+ 60
+ 70
+ ]
+ [
+ 6
+ 65
+ 72
+ ]
+ [
+ 7
+ 66
+ 85
+ ]
+ [
+ "level disengaged"
+ 84
+ 32767
+ ]
+ ];
+ };
}