Update theming.nix
This commit is contained in:
parent
6d448e865e
commit
1fa2752721
@ -1,32 +1,48 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
qt = {
|
||||
# Enable qt
|
||||
qt.enable = true;
|
||||
enable = true;
|
||||
|
||||
# Use gtk platform theme
|
||||
qt.platformTheme = "gtk";
|
||||
platformTheme = "gtk";
|
||||
|
||||
# Use gtk2 style
|
||||
qt.style.name = "gtk2";
|
||||
style.name = "gtk2";
|
||||
};
|
||||
|
||||
# Enable gtk
|
||||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
|
||||
# Gtk cursor theme
|
||||
gtk.cursorTheme.package = pkgs.catppuccin-cursors.frappeRosewater;
|
||||
gtk.cursorTheme.name = "Catppuccin-Frappe-Rosewater-Cursors";
|
||||
# Cursor theme
|
||||
package = pkgs.catppuccin-cursors.frappeRosewater;
|
||||
name = "Catppuccin-Frappe-Rosewater-Cursors";
|
||||
size = 16;
|
||||
};
|
||||
|
||||
# Gtk look theme
|
||||
gtk.theme.package = pkgs.catppuccin-gtk;
|
||||
gtk.theme.name = "Catppuccin-Frappe-Standard-Blue-Dark";
|
||||
gtk = {
|
||||
# Enable gtk
|
||||
enable = true;
|
||||
|
||||
# Gtk icon theme
|
||||
gtk.iconTheme.package = (pkgs.catppuccin-papirus-folders.override {
|
||||
# look theme
|
||||
theme = {
|
||||
package = pkgs.catppuccin-gtk;
|
||||
name = "Catppuccin-Frappe-Standard-Blue-Dark";
|
||||
};
|
||||
|
||||
# icon theme
|
||||
iconTheme = {
|
||||
package = (pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "frappe";
|
||||
accent = "pink";
|
||||
});
|
||||
gtk.iconTheme.name = "Papirus-Dark";
|
||||
name = "Papirus-Dark";
|
||||
};
|
||||
|
||||
# Font name
|
||||
gtk.font.name = "Noto Sans";
|
||||
gtk.font.size = 10;
|
||||
font = {
|
||||
name = "Noto Sans";
|
||||
size = 10;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user