more work, start adding basic paths and files where i see fit

This commit is contained in:
cydiralis 2025-06-24 14:39:33 +01:00
parent 149918fdbc
commit b43b8f0464
No known key found for this signature in database
17 changed files with 273 additions and 0 deletions

35
home/theming.nix Normal file
View file

@ -0,0 +1,35 @@
{pkgs, ...}:{
home.pointerCursor = {
gtk.enable = true;
x11.enable = true;
package = pkgs.catppuccin-cursors.mochaMauve;
name = "catppuccin-mocha-mauve-cursors";
size = 24;
};
catppuccin = {
enable = true;
gtk.enable = false;
kvantum.enable = true;
waybar.enable = false;
};
gtk = {
#catppuccin.enable = false;
enable = true;
theme = {
name = "catppuccin-mocha-mauve-standard";
package = pkgs.catppuccin-gtk.override {
accents = ["mauve"];
size = "standard";
variant = "mocha";
};
};
iconTheme.package = pkgs.adwaita-icon-theme;
iconTheme.name = "Adwaita";
};
qt = {
enable = true;
style.name = "kvantum";
#style.catppuccin.enable = true;
platformTheme.name = "kvantum";
};
}