diff --git a/modules/desktop/de/plasma.nix b/modules/desktop/de/plasma.nix index 392b27e..dd6cf89 100644 --- a/modules/desktop/de/plasma.nix +++ b/modules/desktop/de/plasma.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: let cfg = config.desktop.de.plasma; @@ -9,6 +9,19 @@ in }; config = lib.mkIf cfg.enable { + # Enable plasma services.xserver.desktopManager.plasma5.enable = true; + + # Install themes and integration + environment.systemPackages = with pkgs; [ + utterly-nord-plasma + libsForQt5.qtstyleplugin-kvantum + libsForQt5.plasma-browser-integration + ]; + + # Use kvantum themes + environment.variables = { + "QT_STYLE_OVERRIDE"="kvantum"; + }; }; } \ No newline at end of file