Enable nvidia drivers
This commit is contained in:
parent
223dc96305
commit
b54f6cf678
2 changed files with 18 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
||||||
LANGUAGE = defaultLocale;
|
LANGUAGE = defaultLocale;
|
||||||
LC_MESSAGE = defaultLocale;
|
LC_MESSAGE = defaultLocale;
|
||||||
};
|
};
|
||||||
|
nvidia = true;
|
||||||
users = {
|
users = {
|
||||||
manuel = {
|
manuel = {
|
||||||
fullName = "Manuel Thalmann";
|
fullName = "Manuel Thalmann";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, machine, pkgs, ... }: {
|
{ config, lib, machine, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./modules/custom-build-vm.nix
|
./modules/custom-build-vm.nix
|
||||||
./modules/custom-sops-nix.nix
|
./modules/custom-sops-nix.nix
|
||||||
|
@ -86,6 +86,22 @@
|
||||||
|
|
||||||
i18n.extraLocaleSettings = machine.config.localeSettings;
|
i18n.extraLocaleSettings = machine.config.localeSettings;
|
||||||
|
|
||||||
|
# Graphics
|
||||||
|
hardware.opengl = {
|
||||||
|
enable = true;
|
||||||
|
driSupport = true;
|
||||||
|
driSupport32Bit = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.xserver.videoDrivers = lib.optional machine.config.nvidia "nvidia";
|
||||||
|
|
||||||
|
hardware.nvidia = lib.optionalAttrs machine.config.nvidia {
|
||||||
|
modesetting.enable = true;
|
||||||
|
powerManagement.finegrained = false;
|
||||||
|
nvidiaSettings = true;
|
||||||
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
|
};
|
||||||
|
|
||||||
# Enable KDE Plasma
|
# Enable KDE Plasma
|
||||||
services.displayManager.sddm = {
|
services.displayManager.sddm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue