diff options
author | Tim Keller <tjkeller.xyz> | 2024-11-17 21:01:18 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-11-17 21:01:18 -0600 |
commit | 9bf6d25dba70773740fdb4d778703853964c5393 (patch) | |
tree | 7ae8baebcae96cced8eee993dc2ef7d405ca191d /modules/root/fonts.nix | |
parent | 98aa1968a263d7de4f41fde9e10c02e4e9b234f9 (diff) | |
download | nixos-9bf6d25dba70773740fdb4d778703853964c5393.tar.xz nixos-9bf6d25dba70773740fdb4d778703853964c5393.zip |
add commit mono font
Diffstat (limited to 'modules/root/fonts.nix')
-rw-r--r-- | modules/root/fonts.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/root/fonts.nix b/modules/root/fonts.nix index b72321a..3ae8eef 100644 --- a/modules/root/fonts.nix +++ b/modules/root/fonts.nix @@ -5,11 +5,12 @@ config = lib.mkIf config.fonts.enable { fonts.packages = with pkgs; [ + commit-mono inter + tamzen (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) - tamzen ]; }; } |