diff options
| author | Baitinq <[email protected]> | 2024-12-30 11:35:14 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-12-30 11:35:14 +0100 |
| commit | dce2c3c26a2ff9770bbba2a00471c03ab321c472 (patch) | |
| tree | 91ce56182bab4dee87fd663ea70880446a15f7e7 /modules/fonts | |
| parent | Font: Change font style pt 1000 (diff) | |
| download | nixos-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.nix | 8 |
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"]; }; }; }; |