From b92708b616ffefae3fec27b21072f28d177bd120 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Sun, 5 Apr 2026 22:27:45 +0200 Subject: Add minimal KDE Plasma 6 configuration for cassette-futurism rice Created complete cassette-futurism rice with KDE Plasma 6 desktop environment. Includes system.nix (Plasma 6 setup, Stylix theming), plasma.nix (minimal config with manual theming documentation), default.nix (module orchestrator), and nvim.nix/variables.nix (editor config and color palette). Fixed critical bug in home/mun/default.nix where rice import was hardcoded to nord-blue instead of using the rice parameter, causing all hosts to use nord-blue home configuration regardless of their assigned rice. Co-Authored-By: Claude Sonnet 4.5 --- home/rices/cassette-futurism/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 home/rices/cassette-futurism/default.nix (limited to 'home/rices/cassette-futurism/default.nix') diff --git a/home/rices/cassette-futurism/default.nix b/home/rices/cassette-futurism/default.nix new file mode 100644 index 0000000..03a8469 --- /dev/null +++ b/home/rices/cassette-futurism/default.nix @@ -0,0 +1,13 @@ +{pkgs, ...}: { + imports = [ + ./plasma.nix # KDE Plasma 6 configuration + ./nvim.nix # Neovim with cassette-futurism colors + ]; + + # Cassette futurism specific packages + home.packages = with pkgs; [ + # Optional: cool-retro-term for authentic CRT terminal experience + # Uncomment if desired: + # cool-retro-term + ]; +} -- cgit v1.2.3