dotfiles/nixos/modules/desktop/plasma/default.nix

17 lines
300 B
Nix
Raw Normal View History

2025-02-05 20:15:36 -06:00
{ pkgs, ... }:
{
2024-10-06 15:25:05 -05:00
services = {
desktopManager.plasma6.enable = true;
};
environment.plasma6.excludePackages = builtins.attrValues {
2025-02-05 20:15:36 -06:00
inherit (pkgs.kdePackages)
plasma-browser-integration
konsole
kate
spectacle
kdeconnect-kde
khelpcenter
;
};
2024-10-06 15:25:05 -05:00
}