mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-15 12:28:31 -06:00
35 lines
645 B
Nix
35 lines
645 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
enabled,
|
|
mkOizysModule,
|
|
...
|
|
}:
|
|
mkOizysModule config "plasma" {
|
|
|
|
services = {
|
|
displayManager.sddm = enabled // {
|
|
wayland = enabled;
|
|
};
|
|
desktopManager.plasma6 = enabled;
|
|
};
|
|
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
plasma-browser-integration
|
|
konsole
|
|
(lib.getBin qttools) # Expose qdbus in PATH
|
|
ark
|
|
elisa
|
|
gwenview
|
|
okular
|
|
kate
|
|
khelpcenter
|
|
dolphin
|
|
baloo-widgets # baloo information in Dolphin
|
|
dolphin-plugins
|
|
spectacle
|
|
ffmpegthumbs
|
|
krdp
|
|
# xwaylandvideobridge # exposes Wayland windows to X11 screen capture
|
|
];
|
|
}
|