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.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/users/seth/desktop/plasma.nix b/users/seth/desktop/plasma.nix
new file mode 100644
index 0000000..760df60
--- /dev/null
+++ b/users/seth/desktop/plasma.nix
@@ -0,0 +1,13 @@
+{
+ config,
+ pkgs,
+ ...
+}: let
+ inherit (config.seth) desktop;
+ homePackages =
+ if desktop == "plasma"
+ then with pkgs; [catppuccin-kde]
+ else [];
+in {
+ home.packages = homePackages;
+}