flake/programs/kde.nix

16 lines
285 B
Nix
Raw Normal View History

2024-08-28 19:02:11 +02:00
{pkgs, ...}: {
services.desktopManager.plasma6.enable = true;
environment = {
systemPackages = with pkgs; [flameshot];
plasma6.excludePackages = with pkgs.kdePackages; [
plasma-browser-integration
elisa
okular
kate
khelpcenter
];
};
}