zaphyra's git: nixfiles

zaphyra and void's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 
48 
49 
50 
51 
52 
53 
54 
55 
56 
57 
58 
59 
60 
61 
62 
63 
64 
65 
66 
67 
68 
69 
70 
71 
72 
73 
74 
75 
76 
77 
78 
79 
80 
81 
82 
83 
84 
85 
86 
87 
88 
89 
90 
91 
92 
93 
94 
95 
96 
97 
98 
99 
100 
101 
102 
103 
104 
105 
106 
107 
108 
109 
110 
111 
112 
113 
114 
115 
116 
117 
118 
119 
120 
121 
122 
123 
124 
125 
126 
127 
128 
129 
130 
131 
132 
133 
134 
135 
136 
137 
138 
139 
140 
141 
142 
143 
144 
{
  pov,
  config,
  lib,
  ...
}:
let
  inherit (lib) types;
  cfg = lib.getAttrFromPath pov config;
  cfgRoot = lib.getAttrFromPath (lib.remove [ "hardware" "video" ] pov) config;

in
{

  options = {
    enable = {
      type = types.bool;
      default = false;
      description = ''
        Enable NVIDIA hardware support
      '';
    };
    open = {
      type = types.bool;
      default = false;
    };
    powerManagement = {
      type = types.enum [
        "on"
        "off"
        "finegrained"
      ];
      default = "on";
      description = ''
        on/off: Whether to enable experimental power management through systemd. For more information, see the NVIDIA docs,
        on Chapter 21. Configuring Power Management Support.

        finegrained: Whether to enable experimental power management of PRIME offload. For more information, see the NVIDIA docs,
        on Chapter 22. PCI-Express Runtime D3 (RTD3) Power Management.
      '';
    };
    integrated = {
      enable = {
        type = types.bool;
        default = false;
        description = ''
          Enable support for integrated hardware
        '';
      };
      integratedBus = {
        type = types.str;
        default = if config.hardware.cpu.vendor == "intel" then "PCI:0:2:0" else null;
        description = ''
          Bus ID of the integrated GPU. You can find it using lspci, either under 3D or VGA
        '';
      };
      dedicatedBus = {
        type = types.str;
        default = "PCI:1:0:0";
        description = ''
          Bus ID of the NVIDIA GPU. You can find it using lspci, either under 3D or VGA
        '';
      };
    };
  };

  config = lib.mkIf (cfg.enable && cfg.nvidia.enable) (
    lib.mkMerge [
      {
        assertions = [
          {
            assertion = !cfg.nvidia.open -> cfgRoot.modules.unfree.enable;
            message = ''
              The programs.nvidia module uses unfree software if open is set to false.
              To use it you need to
                - set modules.unfree.enable to true
                OR
                - set.modules.video.nvidia.open to true
            '';
          }
        ];

        boot = {
          initrd.availableKernelModules = [
            "nvidia"
            "nvidia_modeset"
            "nvidia_drm"
            "nvidia_uvm"
          ];
          kernelParams = [ "nvidia.NVreg_UsePageAttributeTable=1" ];
        };

        environment.sessionVariables = {
          _JAVA_AWT_WM_NONREPARENTING = "1";
          GBM_BACKEND = "nvidia-drm";
          NIXOS_OZONE_WL = "1";
          SDL_VIDEODRIVER = "wayland"; # Can break some native games
          WLR_NO_HARDWARE_CURSORS = "1";
        };

        services.xserver.videoDrivers = [
          "fbdev"
          "modesetting"
          "nvidia"
        ];

        hardware = {
          # NVIDIA
          nvidia = {
            inherit (cfg.nvidia) open;

            nvidiaSettings = false;

            # Kernel modesetting
            modesetting.enable = true;

            package = config.boot.kernelPackages.nvidiaPackages.latest;

            # PowerManagement
            powerManagement.enable = cfg.powerManagement == "on" || cfg.powerManagement == "finegrained";

            powerManagement.finegrained = cfg.nvidia.powerManagement == "finegrained";

            # Integrated GPU
            prime =
              if cfg.nvidia.integrated.enable then
                {
                  offload.enable = true;
                  "${config.hardware.cpu.vendor}BusId" = cfg.nvidia.integrated.integratedBus;
                  nvidiaBusId = cfg.nvidia.integrated.dedicatedBus;
                }
              else
                { };
          };
        };
      }

      (lib.mkIf (!cfg.nvidia.open) {
        modules.unfree.list = [ "nvidia-x11" ];
      })
    ]
  );

}