summary refs log tree commit diff stats
path: root/desktop/plasma.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-04-20 18:25:45 +0200
committersils <sils@sils.li>2023-04-20 18:31:19 +0200
commit8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4 (patch)
treebd77dade79e8c7e6f6f3a136d53fd5518d9ffcb9 /desktop/plasma.nix
parentFeat(packages.nix): Add pinentry (diff)
downloadnix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.zip
Feat(structure): Restructured repository
                 This is mainly convenience and my personal
                 preference.
Diffstat (limited to 'desktop/plasma.nix')
-rw-r--r--desktop/plasma.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/desktop/plasma.nix b/desktop/plasma.nix
deleted file mode 100644
index 8a33310..0000000
--- a/desktop/plasma.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
-  config,
-  pkgs,
-  ...
-}: {
-  services.xserver = {
-    enable = true;
-    displayManager.sddm.enable = true;
-    desktopManager.plasma5 = {
-      enable = true;
-      excludePackages = with pkgs.libsForQt5; [
-        kwallet
-        kwallet-pam
-        kwalletmanager
-      ];
-    };
-  };
-}