The configuration files for all my Nix systems
4

Configure Feed

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

fix(users/hanna): wrap attrsets in parenthesis

hanna (Jun 9, 2026, 6:27 AM EDT) d2ad1081 1337381f

+2 -2
+2 -2
users/hanna/configs/ghostty.nix
··· 3 3 let 4 4 mkConfig = lib.generators.toKeyValue { listsAsDuplicateKeys = true; }; 5 5 in { 6 - xdg.config.files."ghostty/config".text = mkConfig { 6 + xdg.config.files."ghostty/config".text = mkConfig ({ 7 7 theme = "Rose Pine"; 8 8 9 9 window-title-font-family = "Inter"; ··· 41 41 gtk-titlebar-style = "tabs"; 42 42 async-backend = "io_uring"; 43 43 gtk-wide-tabs = true; 44 - }; 44 + }); 45 45 }