change gtk theme

This commit is contained in:
Frost-Phoenix 2024-06-21 22:12:17 +02:00
parent 557c171fbc
commit b10e3faf5b
2 changed files with 4 additions and 9 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
fonts.fontconfig.enable = true;
home.packages = [
@ -22,13 +22,8 @@
};
};
theme = {
name = "Catppuccin-Mocha-Compact-Lavender-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "lavender" ];
size = "compact";
# tweaks = [ "rimless" ];
variant = "mocha";
};
name = "Dracula";
package = pkgs.dracula-theme;
};
cursorTheme = {
name = "Nordzy-cursors";

View file

@ -23,6 +23,6 @@
XDG_SESSION_TYPE = "wayland";
SDL_VIDEODRIVER = "wayland";
CLUTTER_BACKEND = "wayland";
GTK_THEME = "Catppuccin-Mocha-Compact-Lavender-Dark";
GTK_THEME = "Dracula";
};
}