diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-07 11:00:23 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-07 11:00:23 +0200 |
| commit | 89de6a101797d676cdd25dbe743412b71d1cbced (patch) | |
| tree | fe7da24fe3508a1ae519dd094e89c2e8945c8c08 /home/rices/plasma6 | |
| parent | d6f07bca4872a5ac6bba29e941b779454cd01630 (diff) | |
Added base plasma6 "rice" and stylix configuration
Diffstat (limited to 'home/rices/plasma6')
| -rw-r--r-- | home/rices/plasma6/default.nix | 6 | ||||
| -rw-r--r-- | home/rices/plasma6/plasma.nix | 31 | ||||
| -rw-r--r-- | home/rices/plasma6/stylix.nix | 33 | ||||
| -rw-r--r-- | home/rices/plasma6/variables.nix | 3 |
4 files changed, 73 insertions, 0 deletions
diff --git a/home/rices/plasma6/default.nix b/home/rices/plasma6/default.nix new file mode 100644 index 0000000..d363548 --- /dev/null +++ b/home/rices/plasma6/default.nix @@ -0,0 +1,6 @@ +{...}: { + imports = [ + ./stylix.nix + ./plasma.nix + ]; +} 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 + ]; +} diff --git a/home/rices/plasma6/stylix.nix b/home/rices/plasma6/stylix.nix new file mode 100644 index 0000000..1c89567 --- /dev/null +++ b/home/rices/plasma6/stylix.nix @@ -0,0 +1,33 @@ +{pkgs, ...}: let + vars = import ./variables.nix; +in { + stylix = { + enable = true; + base16Scheme = "${pkgs.base16-schemes}/share/themes/espresso.yaml"; + polarity = "dark"; + + image = vars.image; + + fonts = { + serif = { + package = pkgs.dejavu_fonts; + name = "DejaVu Serif"; + }; + + sansSerif = { + package = pkgs.dejavu_fonts; + name = "DejaVu Sans"; + }; + + monospace = { + package = pkgs.dejavu_fonts; + name = "DejaVu Sans Mono"; + }; + + emoji = { + package = pkgs.noto-fonts-color-emoji; + name = "Noto Color Emoji"; + }; + }; + }; +} diff --git a/home/rices/plasma6/variables.nix b/home/rices/plasma6/variables.nix new file mode 100644 index 0000000..4c13af7 --- /dev/null +++ b/home/rices/plasma6/variables.nix @@ -0,0 +1,3 @@ +{ + image = ../../../assets/wallpapers/insert_coin.jpeg; +} |
