summaryrefslogtreecommitdiff
path: root/profiles/desktop/plasma/default.nix
blob: b04279d3e0f78872cc52f7542b0241a16ee8c26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{pkgs, ...}: {
  imports = [
    ../.
  ];

  environment.systemPackages = with pkgs; [pinentry-qt];

  services.xserver = {
    displayManager.sddm.enable = true;
    desktopManager.plasma5 = {
      enable = true;
      excludePackages = with pkgs.libsForQt5; [
        khelpcenter
        plasma-browser-integration
        print-manager
      ];
      useQtScaling = true;
    };
  };

  programs.gnupg.agent.pinentryFlavor = "qt";
}