my NixOS and nix-darwin config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added tx-02

+24 -7
+18 -6
modules/home/term/ghostty/ghostty/config
··· 2 2 3 3 custom-shader = ./shaders/cursor_blaze.glsl 4 4 5 - font-family = "" 6 - font-family = "Monaspace Krypton SemiBold" 7 - font-family-bold = "Monaspace Neon SemiBold" 8 - font-family-italic = "Monaspace Argon SemiBold" 9 - font-family-bold-italic = "Monaspace Neon SemiBold" 5 + # font-family = "" 6 + # font-family = "Monaspace Krypton SemiBold" 7 + 8 + font-family = "TX-02 Bold SemiCondensed" 9 + font-family-bold = "TX-02 ExtraBold SemiCondensed" 10 + font-family-italic = "TX-02 Bold SemiCondensed Oblique" 11 + font-family-bold-italic = "TX-02 ExtraBold SemiCondensed Oblique" 12 + 13 + # old font config, remember these have ligatures 14 + # font-family = "" 15 + # font-family = "Monaspace Krypton SemiBold" 16 + # font-family-bold = "Monaspace Neon SemiBold" 17 + # font-family-italic = "Monaspace Argon SemiBold" 18 + # font-family-bold-italic = "Monaspace Neon SemiBold" 10 19 11 20 font-feature = "calt" 12 21 font-feature = "clig" ··· 21 30 font-feature = "ss07" 22 31 font-feature = "ss08" 23 32 24 - font-size = "14" 33 + font-size = "16" 34 + 35 + 36 + 25 37 26 38 cursor-style = "bar" 27 39
+6 -1
modules/system/fonts.nix
··· 1 - { pkgs, ... }: { fonts.packages = [ pkgs.monaspace ]; } 1 + { pkgs, ... }: 2 + { 3 + fonts.packages = [ 4 + pkgs.monaspace 5 + ]; 6 + }