From da228b499f1aa93d3f9c90d4b89b233b8c09fd85 Mon Sep 17 00:00:00 2001 From: Roman Lubij Date: Mon, 2 Mar 2026 09:51:56 +0100 Subject: [PATCH] Set console, texteditor font size for laptop --- common/modules/home/dconf/apps.nix | 5 +++-- laptop/modules/home/dconf/apps.nix | 12 +++++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) 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; + }; + }; }