13 lines
310 B
Nix
13 lines
310 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
hardware.enableAllFirmware = true;
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
services.fwupd.enable = true;
|
|
services.fstrim.enable = true;
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware.nvidia.modesetting.enable = true; # this defaults to true from 24.11
|
|
}
|
|
|