diff options
| author | adikro <adikro@disroot.org> | 2026-01-05 09:14:43 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-01-05 09:14:43 +0100 |
| commit | 96b694b5251957bc6d33760462d28ee4864b0353 (patch) | |
| tree | ecb7bcaf58591b5da5974b1ec3985a4491654079 /hosts | |
| parent | f56145b5914779053d7833f8df3d9f605946c392 (diff) | |
fixed mpv hwdec again, added niri top workspace
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/desktop/configuration.nix | 13 |
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 + ]; + }; } |
