mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:53:55 -05:00
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
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:
parent
7084c9898f
commit
0aaa8fe4cb
|
@ -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"];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue