summaryrefslogtreecommitdiff
path: root/users/seth/mixins/plasma.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/mixins/plasma.nix')
-rw-r--r--users/seth/mixins/plasma.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/users/seth/mixins/plasma.nix b/users/seth/mixins/plasma.nix
new file mode 100644
index 0000000..fe9d69f
--- /dev/null
+++ b/users/seth/mixins/plasma.nix
@@ -0,0 +1,24 @@
+{
+ 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
+ ];
+ };
+}