blob: 03a84690d38797602f0125c3ade870d26fc00827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
];
}
|