aboutsummaryrefslogtreecommitdiff
path: root/home/rices/plasma6/plasma.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/rices/plasma6/plasma.nix')
-rw-r--r--home/rices/plasma6/plasma.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/home/rices/plasma6/plasma.nix b/home/rices/plasma6/plasma.nix
new file mode 100644
index 0000000..44270a8
--- /dev/null
+++ b/home/rices/plasma6/plasma.nix
@@ -0,0 +1,31 @@
+{pkgs, ...}: {
+ services.desktopManager.plasma6.enable = true;
+
+ environment.plasma6.excludePackages = with pkgs; [
+ kdePackages.elisa # Music player
+ kdePackages.kdepim-runtime # Akonadi agents
+ kdePackages.kmahjongg
+ kdePackages.kmines
+ kdePackages.konversation # IRC client
+ kdePackages.kpat # Solitaire
+ kdePackages.ksudoku
+ kdePackages.ktorrent
+ ];
+
+ environment.systemPackages = with pkgs; [
+ # KDE Utilities
+ kdePackages.kcalc # Calculator
+ kdePackages.kcharselect # Character map
+ kdePackages.kclock # Clock app
+ kdePackages.kcolorchooser # Color picker
+ kdePackages.ksystemlog # System log viewer
+ kdiff3 # File/directory comparison tool
+
+ # Hardware/System Utilities (Optional)
+ kdePackages.isoimagewriter # Write hybrid ISOs to USB
+ kdePackages.partitionmanager # Disk and partition management
+ hardinfo2 # System benchmarks and hardware info
+ wayland-utils # Wayland diagnostic tools
+ wl-clipboard # Wayland copy/paste support
+ ];
+}