theme: add fallback fonts
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-08-04 15:53:29 -04:00
parent 7084c9898f
commit 0aaa8fe4cb

View file

@ -9,11 +9,11 @@ in {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
(nerdfonts.override {fonts = ["UbuntuSans"];})
adwaita-qt adwaita-qt
gnome.adwaita-icon-theme gnome.adwaita-icon-theme
liberation_ttf liberation_ttf
vegur vegur
(nerdfonts.override {fonts = ["UbuntuSans"];})
]; ];
pointerCursor = { pointerCursor = {
@ -33,9 +33,9 @@ in {
enable = true; enable = true;
defaultFonts = { defaultFonts = {
monospace = ["UbuntuSansMono Nerd Font"]; monospace = ["UbuntuSansMono Nerd Font" "Liberation Mono"];
serif = ["Vegur"]; serif = ["Vegur" "Liberation Serif"];
sansSerif = [config.gtk.font.name]; sansSerif = [config.gtk.font.name "LIberation Sans"];
}; };
}; };