mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-05 08:43:08 +02:00
6e5c998c2e
Signed-off-by: Alex Stan <90788596+Ultra980@users.noreply.github.com>
23 lines
No EOL
576 B
Nix
23 lines
No EOL
576 B
Nix
inputs: { config, pkgs, lib, ... }: {
|
|
# NVIDIA config
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware = {
|
|
opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
|
|
nvidia = {
|
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
|
modesetting.enable = true;
|
|
powerManagement.enable = true;
|
|
open = true;
|
|
nvidiaSettings = true;
|
|
};
|
|
};
|
|
boot = {
|
|
initrd.kernelModules = [ "nvidia" ];
|
|
extraModulePackages = [ config.boot.kernelPackages.nvidia_x11 ];
|
|
};
|
|
} |