This commit is contained in:
Jonas Röger 2024-04-15 17:25:12 +02:00
parent 742255af38
commit 330eea98d1

View File

@ -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";
};
};
}