diff --git a/common/modules/home/dconf/apps.nix b/common/modules/home/dconf/apps.nix index b49bc7f..de3c8e8 100644 --- a/common/modules/home/dconf/apps.nix +++ b/common/modules/home/dconf/apps.nix @@ -1,4 +1,5 @@ { + lib, ... }: @@ -10,12 +11,12 @@ }; "org/gnome/Console" = { - custom-font = "FiraCode Nerd Font Mono 10"; + custom-font = lib.mkDefault "FiraCode Nerd Font Mono 11"; use-system-font = false; }; "org/gnome/TextEditor" = { - custom-font = "Fira Code weight=450 11"; + custom-font = lib.mkDefault "Fira Code weight=450 11"; use-system-font = false; }; diff --git a/laptop/modules/home/dconf/apps.nix b/laptop/modules/home/dconf/apps.nix index 2821d62..1e600b2 100644 --- a/laptop/modules/home/dconf/apps.nix +++ b/laptop/modules/home/dconf/apps.nix @@ -3,5 +3,15 @@ }: { - dconf.settings = { }; + dconf.settings = { + "org/gnome/Console" = { + custom-font = "FiraCode Nerd Font Mono 11"; + use-system-font = false; + }; + + "org/gnome/TextEditor" = { + custom-font = "Fira Code weight=450 11"; + use-system-font = false; + }; + }; }