mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
16 lines
244 B
Nix
16 lines
244 B
Nix
{ pkgs
|
|
, inputs
|
|
, lib
|
|
, config
|
|
, ...
|
|
}:
|
|
{
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
|
|
hardware.nvidia = {
|
|
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
|
modesetting.enable = true;
|
|
open = true;
|
|
nvidiaSettings = true;
|
|
};
|
|
}
|