summary refs log tree commit diff stats
path: root/desktop/plasma.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-01-13 20:17:10 +0100
committersils <sils@sils.li>2023-01-13 20:17:10 +0100
commit1e7448f805dc70818b12f65c72d4738201559b64 (patch)
tree4c137bca18a46e88aef2791f9597db87d4ac8f89 /desktop/plasma.nix
parentintroduce alejandra (diff)
downloadnix-config-1e7448f805dc70818b12f65c72d4738201559b64.tar.gz
nix-config-1e7448f805dc70818b12f65c72d4738201559b64.zip
remove kwallet
Diffstat (limited to 'desktop/plasma.nix')
-rw-r--r--desktop/plasma.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/desktop/plasma.nix b/desktop/plasma.nix
index 75e5be1..8a33310 100644
--- a/desktop/plasma.nix
+++ b/desktop/plasma.nix
@@ -6,6 +6,13 @@
   services.xserver = {
     enable = true;
     displayManager.sddm.enable = true;
-    desktopManager.plasma5.enable = true;
+    desktopManager.plasma5 = {
+      enable = true;
+      excludePackages = with pkgs.libsForQt5; [
+        kwallet
+        kwallet-pam
+        kwalletmanager
+      ];
+    };
   };
 }