mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-14 20:07:52 -06:00
add plasma module
This commit is contained in:
parent
389faad342
commit
e488991abf
2 changed files with 36 additions and 0 deletions
35
modules/desktop/environments/plasma.nix
Normal file
35
modules/desktop/environments/plasma.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
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
|
||||||
|
];
|
||||||
|
}
|
|
@ -23,6 +23,7 @@ in
|
||||||
lock
|
lock
|
||||||
qtile
|
qtile
|
||||||
hyprland
|
hyprland
|
||||||
|
plasma
|
||||||
|
|
||||||
virtualbox
|
virtualbox
|
||||||
docker
|
docker
|
||||||
|
|
Loading…
Reference in a new issue