2024-01-02 16:20:52 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
|
|
|
cfg = config.faucet.gui;
|
|
|
|
in {
|
2024-01-03 11:10:04 +08:00
|
|
|
imports = [
|
|
|
|
./plymouth.nix
|
2024-01-05 09:26:14 +08:00
|
|
|
./va.nix
|
2024-01-03 11:10:04 +08:00
|
|
|
./greetd.nix
|
|
|
|
];
|
2024-01-02 16:36:28 +08:00
|
|
|
|
2024-01-02 16:20:52 +08:00
|
|
|
options.faucet.gui = {
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
prime = {
|
|
|
|
integrated = mkOption {
|
|
|
|
type = with types; str;
|
|
|
|
default = "i915";
|
|
|
|
description = "integrated gpu driver";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
|
|
|
driSupport = true;
|
|
|
|
driSupport32Bit = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.xserver.videoDrivers =
|
|
|
|
optional ((cfg.type == "nvidia") || (cfg.type == "prime")) "nvidia" ++
|
|
|
|
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
|
|
|
|
|
|
|
hardware.nvidia = mkIf ((cfg.type == "nvidia") || (cfg.type == "prime")) {
|
|
|
|
modesetting.enable = true;
|
|
|
|
nvidiaSettings = true;
|
|
|
|
|
|
|
|
prime = mkIf (cfg.type == "prime") {
|
|
|
|
offload = {
|
|
|
|
enable = true;
|
|
|
|
enableOffloadCmd = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
powerManagement.enable = false;
|
|
|
|
powerManagement.finegrained = false;
|
2024-01-03 11:10:04 +08:00
|
|
|
open = true;
|
2024-01-02 16:20:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
boot.initrd.kernelModules =
|
|
|
|
optional (cfg.type == "amdgpu") "amdgpu" ++
|
|
|
|
optional (cfg.type == "prime") cfg.prime.integrated;
|
|
|
|
};
|
|
|
|
}
|