infrastructure/nixos/hosts/thalassa/eevee/hardware.nix

15 lines
278 B
Nix
Raw Normal View History

2023-04-22 17:38:18 +02:00
{ 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;
}