summaryrefslogtreecommitdiff
path: root/users/seth/desktop/plasma.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/desktop/plasma.nix')
-rw-r--r--users/seth/desktop/plasma.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/users/seth/desktop/plasma.nix b/users/seth/desktop/plasma.nix
deleted file mode 100644
index f3acc36..0000000
--- a/users/seth/desktop/plasma.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- lib,
- pkgs,
- osConfig,
- ...
-}:
-let
- enable = osConfig.services.desktopManager.plasma6.enable or false;
-in
-{
- config = lib.mkIf enable {
- home.packages = [
- # Matrix client
- # TODO: Use after it drops libolm
- # pkgs.kdePackages.neochat
- # Mastodon client
- pkgs.kdePackages.tokodon
- # Torrent client
- pkgs.qbittorrent
- ];
- };
-}