summary refs log blame commit diff stats
path: root/sys/desktop/plasma/default.nix
blob: 8acc0f6a9082105a6f51579a583c3c31866e3f28 (plain) (tree)
1
2
3
4
5
6
7
8
9
              
                      


                                       
                              

                                                               


                      
 
{pkgs, ...}: {
  services.xserver = {
    enable = true;
    displayManager = {
      sddm.enable = true;
      defaultSession = "plasmawayland";
    };
    desktopManager.plasma5 = {
      enable = true;
    };
  };
  environment.plasma5.excludePackages = with pkgs.libsForQt5; [
        kwallet
        kwallet-pam
        kwalletmanager
      ];
}