about summary refs log tree commit diff
path: root/modules/fonts
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2024-12-30 11:35:14 +0100
committerBaitinq <[email protected]>2024-12-30 11:35:14 +0100
commitdce2c3c26a2ff9770bbba2a00471c03ab321c472 (patch)
tree91ce56182bab4dee87fd663ea70880446a15f7e7 /modules/fonts
parentFont: Change font style pt 1000 (diff)
downloadnixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.tar.gz
nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.tar.bz2
nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.zip
fmt
Diffstat (limited to 'modules/fonts')
-rw-r--r--modules/fonts/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix
index 7203f30..75182e4 100644
--- a/modules/fonts/default.nix
+++ b/modules/fonts/default.nix
@@ -1,4 +1,8 @@
-{ config, pkgs, ... }: {
+{
+  config,
+  pkgs,
+  ...
+}: {
   fonts = {
     packages = with pkgs; [
       noto-fonts
@@ -12,7 +16,7 @@
     ];
     fontconfig = {
       defaultFonts = {
-        monospace = [ "TX-02" "Inconsolata LGC" ];
+        monospace = ["TX-02" "Inconsolata LGC"];
       };
     };
   };