removed hard coded fonts in favor of specified overrides

This commit is contained in:
Aly Raffauf 2024-03-28 22:42:43 -04:00
parent 0736ea0c8b
commit b9c4ec511d
2 changed files with 5 additions and 0 deletions

View file

@ -116,6 +116,8 @@
"org/gnome/desktop/interface" = { "org/gnome/desktop/interface" = {
gtk-theme = "Catppuccin-Frappe-Compact-Mauve-Dark"; gtk-theme = "Catppuccin-Frappe-Compact-Mauve-Dark";
color-scheme = "prefer-dark"; color-scheme = "prefer-dark";
cursor-theme = "Catppuccin-Frappe-Dark-Cursors";
cursor-size = 24;
}; };
}; };
}; };

View file

@ -17,12 +17,15 @@
variant = "frappe"; variant = "frappe";
tweaks = [ "normal" ]; tweaks = [ "normal" ];
}; };
iconTheme.name = "Papirus-Dark"; iconTheme.name = "Papirus-Dark";
iconTheme.package = pkgs.catppuccin-papirus-folders.override { iconTheme.package = pkgs.catppuccin-papirus-folders.override {
flavor = "frappe"; flavor = "frappe";
accent = "mauve"; accent = "mauve";
}; };
font.name = "NotoSans Nerd Font Regular"; font.name = "NotoSans Nerd Font Regular";
font.package = pkgs.nerdfonts.override { fonts = [ "Noto" ]; };
cursorTheme.package = pkgs.catppuccin-cursors.frappeDark; cursorTheme.package = pkgs.catppuccin-cursors.frappeDark;
cursorTheme.name = "Catppuccin-Frappe-Dark-Cursors"; cursorTheme.name = "Catppuccin-Frappe-Dark-Cursors";