plasma-manager and other changes

This commit is contained in:
Sean Kovacs 2025-11-06 12:33:16 -05:00
commit e0cbd257c4
Signed by: sckova
GPG key ID: 00F325187C68651A
8 changed files with 358 additions and 46 deletions

23
home/alien.nix Normal file
View file

@ -0,0 +1,23 @@
{ 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";
};
};
}