perf(gui): switch to open source nvidia drivers
Also disable xserver as it is not needed for a wayland-only setup.
This commit is contained in:
parent
5c441d115f
commit
2bbad75474
|
@ -4,10 +4,14 @@
|
||||||
, ... }: with lib; let
|
, ... }: with lib; let
|
||||||
cfg = config.faucet.gui;
|
cfg = config.faucet.gui;
|
||||||
in {
|
in {
|
||||||
imports = [ ./plymouth.nix ];
|
imports = [
|
||||||
|
./plymouth.nix
|
||||||
|
./greetd.nix
|
||||||
|
];
|
||||||
|
|
||||||
options.faucet.gui = {
|
options.faucet.gui = {
|
||||||
enable = mkEnableOption "various setup required for GUI and support software";
|
enable = mkEnableOption "various setup required for GUI and support software";
|
||||||
|
session = mkEnableOption "software required for a graphical session" // { default = true; };
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = with types; enum [ "intel" "amdgpu" "nvidia" "prime" ];
|
type = with types; enum [ "intel" "amdgpu" "nvidia" "prime" ];
|
||||||
description = "type of graphics acceleration used";
|
description = "type of graphics acceleration used";
|
||||||
|
@ -31,8 +35,6 @@ in {
|
||||||
services.xserver.videoDrivers =
|
services.xserver.videoDrivers =
|
||||||
optional ((cfg.type == "nvidia") || (cfg.type == "prime")) "nvidia" ++
|
optional ((cfg.type == "nvidia") || (cfg.type == "prime")) "nvidia" ++
|
||||||
optional (cfg.type == "amdgpu") "amdgpu";
|
optional (cfg.type == "amdgpu") "amdgpu";
|
||||||
# has to be enabled even when using wayland
|
|
||||||
services.xserver.enable = true;
|
|
||||||
# inhibits default display manager
|
# inhibits default display manager
|
||||||
services.xserver.displayManager.startx.enable = mkDefault true;
|
services.xserver.displayManager.startx.enable = mkDefault true;
|
||||||
|
|
||||||
|
@ -49,7 +51,7 @@ in {
|
||||||
|
|
||||||
powerManagement.enable = false;
|
powerManagement.enable = false;
|
||||||
powerManagement.finegrained = false;
|
powerManagement.finegrained = false;
|
||||||
open = false;
|
open = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.kernelModules =
|
boot.initrd.kernelModules =
|
||||||
|
|
Loading…
Reference in a new issue