summaryrefslogtreecommitdiff
path: root/hosts/common/desktop/plasma.nix
blob: cd3198399610708422cbcd10640a35a7529c2ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }: {
  services.xserver = {
    displayManager.sddm.enable = true;
    desktopManager.plasma5 = {
      enable = true;
      excludePackages = with pkgs.libsForQt5; [
        khelpcenter
        plasma-browser-integration
        print-manager
      ];
    };
  };
}