Nix/hosts/GPD-WinMax2/hardware/default.nix

25 lines
338 B
Nix

{ pkgs, ... }:
{
imports = [
./file-systems.nix
./gdm/monitors
];
boot = {
initrd.availableKernelModules = [
"nvme"
"sd_mod"
"thunderbolt"
"usb_storage"
"usbhid"
"xhci_pci"
];
};
hardware.amd-graphics.enable = true;
services.logind.lidSwitchExternalPower = "ignore";
}