Update theming.nix

This commit is contained in:
CronyAkatsuki 2024-03-26 08:52:17 +01:00
parent 6d448e865e
commit 1fa2752721

View File

@ -1,32 +1,48 @@
{ pkgs, ... }: { { pkgs, ... }: {
# Enable qt
qt.enable = true;
# Use gtk platform theme qt = {
qt.platformTheme = "gtk"; # Enable qt
enable = true;
# Use gtk2 style # Use gtk platform theme
qt.style.name = "gtk2"; platformTheme = "gtk";
# Enable gtk # Use gtk2 style
gtk.enable = true; style.name = "gtk2";
};
# Gtk cursor theme home.pointerCursor = {
gtk.cursorTheme.package = pkgs.catppuccin-cursors.frappeRosewater; gtk.enable = true;
gtk.cursorTheme.name = "Catppuccin-Frappe-Rosewater-Cursors";
# Gtk look theme # Cursor theme
gtk.theme.package = pkgs.catppuccin-gtk; package = pkgs.catppuccin-cursors.frappeRosewater;
gtk.theme.name = "Catppuccin-Frappe-Standard-Blue-Dark"; name = "Catppuccin-Frappe-Rosewater-Cursors";
size = 16;
};
# Gtk icon theme gtk = {
gtk.iconTheme.package = (pkgs.catppuccin-papirus-folders.override { # Enable gtk
flavor = "frappe"; enable = true;
accent = "pink";
});
gtk.iconTheme.name = "Papirus-Dark";
# Font name # look theme
gtk.font.name = "Noto Sans"; theme = {
gtk.font.size = 10; package = pkgs.catppuccin-gtk;
name = "Catppuccin-Frappe-Standard-Blue-Dark";
};
# icon theme
iconTheme = {
package = (pkgs.catppuccin-papirus-folders.override {
flavor = "frappe";
accent = "pink";
});
name = "Papirus-Dark";
};
# Font name
font = {
name = "Noto Sans";
size = 10;
};
};
} }