nixos_PC/shared/desktop_environment/kde_plasma/parts/plasma6.nix

22 lines
403 B
Nix
Raw Normal View History

2024-08-24 12:54:21 +02:00
{ pkgs, ... }:
{
services.xserver.enable = true;
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs.kdePackages; [
elisa
gwenview
kate
khelpcenter
okular
plasma-browser-integration
];
2024-08-24 14:48:14 +02:00
environment.systemPackages = with pkgs; [
yakuake
];
2024-08-24 12:54:21 +02:00
}
# vim: tabstop=2 softtabstop=2