2024-01-02 16:20:52 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
2024-01-07 22:01:31 +08:00
|
|
|
cfg = config.global.gui;
|
2024-01-05 22:23:41 +08:00
|
|
|
|
|
|
|
intel = cfg.type == "intel" || (cfg.type == "prime" && config.hardware.nvidia.prime.intelBusId != "");
|
|
|
|
amdgpu = cfg.type == "amdgpu" || (cfg.type == "prime" && config.hardware.nvidia.prime.amdgpuBusId != "");
|
|
|
|
nvidia = cfg.type == "nvidia" || cfg.type == "prime";
|
2024-01-02 16:20:52 +08:00
|
|
|
in {
|
2024-01-03 11:10:04 +08:00
|
|
|
imports = [
|
|
|
|
./plymouth.nix
|
|
|
|
./greetd.nix
|
|
|
|
];
|
2024-01-02 16:36:28 +08:00
|
|
|
|
2024-01-07 22:01:31 +08:00
|
|
|
options.global.gui = {
|
2024-01-02 16:20:52 +08:00
|
|
|
enable = mkEnableOption "various setup required for GUI and support software";
|
2024-01-03 11:10:04 +08:00
|
|
|
session = mkEnableOption "software required for a graphical session" // { default = true; };
|
2024-01-02 16:20:52 +08:00
|
|
|
type = mkOption {
|
|
|
|
type = with types; enum [ "intel" "amdgpu" "nvidia" "prime" ];
|
|
|
|
description = "type of graphics acceleration used";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
|
|
|
driSupport = true;
|
|
|
|
driSupport32Bit = true;
|
2024-01-05 22:23:41 +08:00
|
|
|
|
|
|
|
# https://nixos.wiki/wiki/Accelerated_Video_Playback
|
|
|
|
extraPackages = with pkgs; optionals intel [
|
|
|
|
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
|
|
|
vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
|
|
|
|
vaapiVdpau
|
|
|
|
libvdpau-va-gl
|
|
|
|
] ++ optional nvidia nvidia-vaapi-driver;
|
2024-01-02 16:20:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
services.xserver.videoDrivers =
|
2024-01-05 22:23:41 +08:00
|
|
|
optional nvidia "nvidia" ++
|
2024-01-02 16:20:52 +08:00
|
|
|
optional (cfg.type == "amdgpu") "amdgpu";
|
2024-01-02 16:36:28 +08:00
|
|
|
# inhibits default display manager
|
|
|
|
services.xserver.displayManager.startx.enable = mkDefault true;
|
2024-01-02 16:20:52 +08:00
|
|
|
|
2024-01-05 22:23:41 +08:00
|
|
|
hardware.nvidia = mkIf nvidia {
|
2024-01-02 16:20:52 +08:00
|
|
|
modesetting.enable = true;
|
|
|
|
nvidiaSettings = true;
|
|
|
|
|
|
|
|
prime = mkIf (cfg.type == "prime") {
|
|
|
|
offload = {
|
|
|
|
enable = true;
|
|
|
|
enableOffloadCmd = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
powerManagement.enable = false;
|
|
|
|
powerManagement.finegrained = false;
|
2024-01-07 18:00:10 +08:00
|
|
|
open = false;
|
2024-01-02 16:20:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
boot.initrd.kernelModules =
|
2024-01-05 22:23:41 +08:00
|
|
|
optional amdgpu "amdgpu" ++
|
|
|
|
optional intel "i915";
|
|
|
|
|
|
|
|
boot.kernelParams = optional intel "i915.fastboot=1";
|
2024-01-02 16:20:52 +08:00
|
|
|
};
|
|
|
|
}
|