summary refs log tree commit diff stats
path: root/system/settings/hardware/nvidia-gpu.nix
blob: 0f99e73c7f90e202ce66534b48a587022285e701 (plain)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:

{ services.xserver.videoDrivers = [ "nvidia" ];
  nixpkgs.config.allowUnfree = true;
  services.compton = {
    enable = true;
  };
}