infrastructure/nixos/hosts/thalassa/eevee/hardware.nix
2023-04-22 17:38:18 +02:00

15 lines
278 B
Nix

{ pkgs, ... }: {
hardware.enableAllFirmware = true;
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
hardware.opengl.enable = true;
services.udev.packages = with pkgs; [ wooting-udev-rules ];
# SSD Trim
services.fstrim.enable = true;
}