26 lines
485 B
Nix
26 lines
485 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.desktopManager.plasma6.enable = true;
|
|
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
konsole
|
|
(lib.getBin qttools) # Expose qdbus in PATH
|
|
elisa
|
|
okular
|
|
khelpcenter
|
|
baloo-widgets # baloo information in Dolphin
|
|
dolphin-plugins
|
|
ffmpegthumbs
|
|
krdp
|
|
|
|
gwenview
|
|
# dolphin
|
|
# spectacle
|
|
# xwaylandvideobridge
|
|
# kate
|
|
# gwenview
|
|
# ark
|
|
# plasma-browser-integration
|
|
];
|
|
}
|