my NixOS and nix-darwin config
0
fork

Configure Feed

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

.

+38 -21
+1
.harper-dictionary.txt
··· 1 + opencode
+6 -6
flake.lock
··· 27 27 ] 28 28 }, 29 29 "locked": { 30 - "lastModified": 1770164260, 31 - "narHash": "sha256-mQgOAYWlVJyuyXjZN6yxqXWyODvQI5P/UZUCU7IOuYo=", 30 + "lastModified": 1770491427, 31 + "narHash": "sha256-8b+0vixdqGnIIcgsPhjdX7EGPdzcVQqYxF+ujjex654=", 32 32 "owner": "nix-community", 33 33 "repo": "home-manager", 34 - "rev": "4fda26500b4539e0a1e3afba9f0e1616bdad4f85", 34 + "rev": "cbd8a72e5fe6af19d40e2741dc440d9227836860", 35 35 "type": "github" 36 36 }, 37 37 "original": { ··· 42 42 }, 43 43 "nixpkgs": { 44 44 "locked": { 45 - "lastModified": 1770115704, 46 - "narHash": "sha256-KHFT9UWOF2yRPlAnSXQJh6uVcgNcWlFqqiAZ7OVlHNc=", 45 + "lastModified": 1770197578, 46 + "narHash": "sha256-AYqlWrX09+HvGs8zM6ebZ1pwUqjkfpnv8mewYwAo+iM=", 47 47 "owner": "nixos", 48 48 "repo": "nixpkgs", 49 - "rev": "e6eae2ee2110f3d31110d5c222cd395303343b08", 49 + "rev": "00c21e4c93d963c50d4c0c89bfa84ed6e0694df2", 50 50 "type": "github" 51 51 }, 52 52 "original": {
+23 -15
modules/home/term/ghostty/ghostty/config
··· 5 5 # font-family = "" 6 6 # font-family = "Monaspace Krypton SemiBold" 7 7 8 - font-family = "TX-02 Bold SemiCondensed" 9 - font-family-bold = "TX-02 ExtraBold SemiCondensed" 8 + # font-family = "TX-02 Medium" 9 + font-family = "TX-02 Medium SemiCondensed" 10 + # font-family = "TX-02 Bold" 11 + font-family-bold = "TX-02 Bold SemiCondensed" 10 12 font-family-italic = "TX-02 Bold SemiCondensed Oblique" 11 13 font-family-bold-italic = "TX-02 ExtraBold SemiCondensed Oblique" 12 14 ··· 17 19 # font-family-italic = "Monaspace Argon SemiBold" 18 20 # font-family-bold-italic = "Monaspace Neon SemiBold" 19 21 20 - font-feature = "calt" 21 - font-feature = "clig" 22 - font-feature = "liga" 23 - font-feature = "dlig" 24 - font-feature = "ss01" 25 - font-feature = "ss02" 26 - font-feature = "ss03" 27 - font-feature = "ss04" 28 - font-feature = "ss05" 29 - font-feature = "ss06" 30 - font-feature = "ss07" 31 - font-feature = "ss08" 22 + # font-feature = "calt" 23 + # font-feature = "clig" 24 + # font-feature = "liga" 25 + # font-feature = "dlig" 26 + # font-feature = "ss01" 27 + # font-feature = "ss02" 28 + # font-feature = "ss03" 29 + # font-feature = "ss04" 30 + # font-feature = "ss05" 31 + # font-feature = "ss06" 32 + # font-feature = "ss07" 33 + # font-feature = "ss08" 32 34 33 - font-size = "16" 35 + # ligatures arent properly implemented in my version of the berkeley mono lol 36 + font-feature = "-calt" 37 + font-feature = "-liga" 38 + font-feature = "-dlig" 39 + 40 + font-size = "15" 41 + # font-size = "12" 34 42 35 43 36 44
+2
modules/home/tools/default.nix
··· 35 35 bun 36 36 nodejs 37 37 38 + opencode 39 + 38 40 ]; 39 41 40 42 }
+1
modules/home/tools/helix/helix/config.toml
··· 6 6 color-modes = true 7 7 completion-trigger-len = 1 8 8 completion-timeout = 5 9 + rulers = [80] 9 10 10 11 [editor.cursor-shape] 11 12 normal = "block"
+5
modules/home/tools/helix/helix/languages.toml
··· 100 100 # Optional: enable auto-format on save (only enabled by default for a few languages like Rust and Go) 101 101 # auto-format = true 102 102 103 + [[language]] 104 + name = "jjdescription" 105 + file-types = [{ glob = "*.jjdescription" }] 106 + language-servers = ["harper-ls"] 107 + 103 108 104 109