infrastructure/nixos/hosts/olympus/eevee/hardware.nix
Victor e1b3bcc447
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
add eevee
2023-04-22 16:21:49 +02:00

20 lines
446 B
Nix

{ pkgs, ... }: {
hardware.enableAllFirmware = true;
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
# Vulkan
# hardware.opengl.driSupport = true;
# hardware.opengl.extraPackages = with pkgs; [
# amdvlk
# rocm-opencl-icd
# rocm-opencl-runtime
# ];
# systemd.tmpfiles.rules =
# [ "L+ /opt/rocm/hip - - - - ${pkgs.hip}" ];
# SSD Trim
services.fstrim.enable = true;
}