31 lines
No EOL
530 B
Nix
Executable file
31 lines
No EOL
530 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services = {
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
wayland = {
|
|
enable = true;
|
|
compositor = "kwin";
|
|
};
|
|
};
|
|
desktopManager.plasma6.enable = true;
|
|
};
|
|
|
|
# remove unnecessary packages
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
elisa
|
|
discover
|
|
konsole
|
|
khelpcenter
|
|
krdp
|
|
xwaylandvideobridge
|
|
plasma-browser-integration
|
|
baloo-widgets
|
|
ffmpegthumbs
|
|
dolphin-plugins
|
|
kate
|
|
okular
|
|
gwenview
|
|
];
|
|
} |