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