summaryrefslogtreecommitdiff
path: root/hosts/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/desktop')
-rw-r--r--hosts/desktop/configuration.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 4956dbe..a80cb60 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -1,4 +1,4 @@
-{ inputs, username, ... }:
+{ config, inputs, username, ... }:
{
system.stateVersion = "25.05";
@@ -49,7 +49,6 @@
users.enable = true;
};
srv = {
- autoclicker.enable = true;
files = {
thunar.enable = true;
utils.enable = true;
@@ -69,7 +68,11 @@
};
};
- boot.kernelParams = [
- "video=DP-1:2560x1440@240"
- ];
+ boot = {
+ kernelParams = [ "video=DP-1:2560x1440@240" ];
+ kernelModules = [ "nct6687" ];
+ extraModulePackages = [
+ config.boot.kernelPackages.nct6687d
+ ];
+ };
}