mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-05 08:43:08 +02:00
13d7ab12d0
Signed-off-by: Alex Stan <90788596+Ultra980@users.noreply.github.com> git merge is ez with meld
19 lines
No EOL
450 B
Nix
19 lines
No EOL
450 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;
|
|
};
|
|
};
|
|
} |