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