nix/home/alien.nix
2025-11-07 15:44:57 -05:00

22 lines
457 B
Nix

{ config, pkgs, ... }:
{
catppuccin = {
accent = "mocha";
flavor = "blue";
};
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";
};
};
}