Skip to content

Commit

Permalink
desktop: enable hardware sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
MattSturgeon committed Dec 12, 2024
1 parent 45ddc92 commit 688aa96
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions hosts/desktop/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
common-hidpi
./hardware-configuration.nix
./disks.nix
./sensors.nix
];

environment.systemPackages = with pkgs; [
Expand Down
13 changes: 13 additions & 0 deletions hosts/desktop/sensors.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.lm_sensors
];

# Generated by sensors-detect on Thu Dec 12 13:01:44 2024
boot.kernelModules = [
"coretemp"
"k10temp"
"nct6775"
];
}

0 comments on commit 688aa96

Please sign in to comment.