flake/programs/kde.nix

19 lines
342 B
Nix
Raw Normal View History

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