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