Set console, texteditor font size for laptop

This commit is contained in:
2026-03-02 09:51:56 +01:00
parent 7e1c8c167e
commit da228b499f
2 changed files with 14 additions and 3 deletions

View File

@@ -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;
};

View File

@@ -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;
};
};
}