summary refs log tree commit diff stats
path: root/desktop/plasma
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-05-04 18:17:38 +0200
committersils <sils@sils.li>2023-05-04 18:17:38 +0200
commit4eaf76cf1e0af9ec7a630320bb7d4956041dd03e (patch)
tree4073ad033ef5f0939e76bb82a75847b34ca4bba9 /desktop/plasma
parentChore(flake): Update (diff)
downloadnix-config-4eaf76cf1e0af9ec7a630320bb7d4956041dd03e.tar.gz
nix-config-4eaf76cf1e0af9ec7a630320bb7d4956041dd03e.zip
Structure(treewide): Use new structure with home-manager
                     home-manager enables great possibilities and is
                     part of simplifying the structure of my config.
Diffstat (limited to 'desktop/plasma')
-rw-r--r--desktop/plasma/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/desktop/plasma/default.nix b/desktop/plasma/default.nix
deleted file mode 100644
index 4198029..0000000
--- a/desktop/plasma/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{pkgs, ...}: {
-  services.xserver = {
-    enable = true;
-    displayManager.sddm.enable = true;
-    desktopManager.plasma5 = {
-      enable = true;
-      excludePackages = with pkgs.libsForQt5; [
-        kwallet
-        kwallet-pam
-        kwalletmanager
-      ];
-    };
-  };
-}