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