changend names of systems

This commit is contained in:
twoneis 2024-04-26 14:47:33 +02:00
parent ce8383f6b6
commit 7b0b8220a2
10 changed files with 14 additions and 9 deletions

14
devices/ellaca/nvidia.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, ... }: {
# Load nvidia driver
services.xserver.videoDrivers = ["nvidia"];
hardware.nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
powerManagement.finegrained = false;
open = false;
nvidiaSettings = false;
package = config.boot.kernelPackages.nvidiaPackages.vulkan_beta;
};
}