infrastructure/nixos/hosts/thalassa/eevee/hardware.nix
Vivian 0cb9e1ac06
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix wayland + nvidia for eevee
2023-04-22 17:58:40 +02:00

17 lines
409 B
Nix

{ pkgs, config, ... }: {
hardware.enableAllFirmware = true;
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
hardware.opengl.enable = true;
hardware.nvidia.modesetting.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
services.udev.packages = with pkgs; [ wooting-udev-rules ];
# SSD Trim
services.fstrim.enable = true;
}