diff options
author | lassulus <git@lassul.us> | 2023-01-31 00:34:07 +0100 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-01-31 00:34:07 +0100 |
commit | 62bd490d1e7217898bc793afc20de853ac1e6622 (patch) | |
tree | 454b9cbf6f72c54b993487ebc1f8deeb1cbb6506 /tv/2configs/hw | |
parent | 369fa6b7eb3f0fa3e1034bcad438eeda017949f8 (diff) | |
parent | a85de9a0deb81f8b8759bfc6a54db0d823ab7a19 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/2configs/hw')
-rw-r--r-- | tv/2configs/hw/winmax2.nix | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/tv/2configs/hw/winmax2.nix b/tv/2configs/hw/winmax2.nix index 0a207f231..49af7611c 100644 --- a/tv/2configs/hw/winmax2.nix +++ b/tv/2configs/hw/winmax2.nix @@ -1,7 +1,21 @@ { pkgs, ... }: { + + imports = [ + ../smartd.nix + ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" ]; boot.initrd.kernelModules = [ "amdgpu" ]; - boot.kernelModules = [ "kvm-amd" ]; + boot.kernelModules = [ + "amd-pstate" + "kvm-amd" + ]; + boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelParams = [ + "amd_pstate=passive" + ]; + + hardware.bluetooth.enable = true; hardware.cpu.amd.updateMicrocode = true; hardware.enableRedistributableFirmware = true; @@ -25,6 +39,10 @@ services.illum.enable = true; + services.logind.extraConfig = /* ini */ '' + HandlePowerKey=ignore + ''; + tv.lidControl.enable = true; tv.hw.screens.primary.width = 2560; |