diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-28 13:01:00 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-28 13:02:55 +0530 |
commit | 37da6d768b52dbff17c3b9d23d26237054fa55c8 (patch) | |
tree | dd887e0b50a496e41264d33374d017af82168ac8 /os/cez/modules | |
parent | 3fad7111c3dc939356a81dfc88ca4198d82640e5 (diff) |
cez/specialisation: move to standalone module
Diffstat (limited to 'os/cez/modules')
-rw-r--r-- | os/cez/modules/specialisation.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/os/cez/modules/specialisation.nix b/os/cez/modules/specialisation.nix new file mode 100644 index 0000000..ccee839 --- /dev/null +++ b/os/cez/modules/specialisation.nix @@ -0,0 +1,28 @@ +{ lib, ... }: { + specialisation.nvidia.configuration = { + boot = { + kernelParams = [ "transparent_hugepage=always" ]; + kernel.sysctl."vm.max_map_count" = 2147483642; + }; + + environment.variables = { + DRI_PRIME = 1; + __NV_PRIME_RENDER_OFFLOAD = 1; + __VK_LAYER_NV_optimus = "NVIDIA_only"; + __GLX_VENDOR_LIBRARY_NAME = "nvidia"; + }; + + hardware.nvidia = { + open = true; + nvidiaSettings = false; + prime.sync.enable = true; + }; + + services = { + xserver.videoDrivers = [ "nvidia" ]; + tlp.settings.PLATFORM_PROFILE_ON_AC = lib.mkForce "performance"; + }; + nixpkgs.config.allowUnfreePredicate = + pkg: builtins.elem (lib.getName pkg) [ "nvidia-x11" ]; + }; +} |