aboutsummaryrefslogtreecommitdiff
path: root/nixos/profiles
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2026-01-06 16:41:43 +0100
committerMartin Fischer <martin@push-f.com>2026-01-06 16:41:43 +0100
commitaf7e8066e51cc120eb06b0c322224231ddf7ca4c (patch)
treed9b00f03b56fdb5fcc0b736a3998c6525039a657 /nixos/profiles
parentacd3f73c1ac82c8cbc1cff865669468de7f57600 (diff)
fix(docs): terminal font size is in pt not px
Diffstat (limited to 'nixos/profiles')
-rw-r--r--nixos/profiles/workstation/firefox.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/profiles/workstation/firefox.nix b/nixos/profiles/workstation/firefox.nix
index 5aa72bb..a2b8f49 100644
--- a/nixos/profiles/workstation/firefox.nix
+++ b/nixos/profiles/workstation/firefox.nix
@@ -15,7 +15,7 @@
"browser.uidensity" = 1;
"extensions.activeThemeID" = "firefox-compact-dark@mozilla.org"; # can be changed via UI despite this about:config setting being locked
"identity.fxaccounts.enabled" = false;
- "layout.css.devPixelsPerPx" = "1.2"; # with this the default Firefox font size matches my terminal font size of 14px
+ "layout.css.devPixelsPerPx" = "1.2"; # with this the default Firefox font size matches my terminal font size of 14pt
"sidebar.revamp" = false; # with the revamped sidebar Ctrl+B opens but not closes the sidebar which is annoying
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};