mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Desktop] Enable all plasma5 options + driSupport
This commit is contained in:
parent
0fa2154a12
commit
f4c1a39c8c
1 changed files with 10 additions and 1 deletions
11
desktop.nix
11
desktop.nix
|
|
@ -103,7 +103,12 @@ in {
|
|||
|
||||
# Enable the Plasma 5 Desktop Environment.
|
||||
services.xserver.displayManager.sddm.enable = true;
|
||||
services.xserver.desktopManager.plasma5.enable = true;
|
||||
services.xserver.desktopManager.plasma5 = {
|
||||
enable = true;
|
||||
runUsingSystemd = true;
|
||||
useQtScaling = true;
|
||||
supportDDC = true;
|
||||
};
|
||||
|
||||
boot.plymouth.enable = mkDefault true;
|
||||
boot.kernelParams = [ "quiet" "splash" "udev.log_level=3" ];
|
||||
|
|
@ -148,6 +153,10 @@ in {
|
|||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
services.xserver.libinput.enable = true;
|
||||
|
||||
hardware.opengl.driSupport = true;
|
||||
# For 32 bit applications
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
|
||||
programs.gnupg.agent.pinentryFlavor = "qt";
|
||||
|
||||
environment.systemPackages = with pkgs; with libsForQt5; [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue