nix/home/alien.nix
2025-11-07 17:48:05 -05:00

23 lines
474 B
Nix

{ config, pkgs, ... }:
{
catppuccin = {
accent = "blue";
flavor = "mocha";
};
programs.plasma = {
workspace = {
colorScheme = "CatppuccinMochaBlue";
cursor.theme = "catppuccin-mocha-blue-cursors";
splashScreen.theme = "Catpppuccin-Mocha-Blue";
};
configFile = {
kdeglobals.KDE = {
DefaultDarkLookAndFeel = "Catppuccin-Mocha-Blue";
DefaultLightLookAndFeel = "Catppuccin-Latte-Blue";
};
};
};
}