Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

Add ghostty config, ssh-agent

+34 -2
+22
ghostty/config
··· 1 + font-size = 13 2 + font-family = Berkeley Mono 3 + theme = catppuccin-macchiato 4 + shell-integration = fish 5 + 6 + window-decoration = false 7 + 8 + font-feature = calt 9 + font-feature = ccmp 10 + font-feature = locl 11 + font-feature = ordn 12 + font-feature = mark 13 + font-feature = mkmk 14 + #font-feature = aalt 15 + #font-feature = ss01 16 + #font-feature = ss02 17 + #font-feature = ss03 18 + #font-feature = ss04 19 + #font-feature = ss05 20 + #font-feature = ss06 21 + #font-feature = ss07 22 + #font-feature = ss08
+12 -2
noah-home.nix
··· 196 196 enable = true; 197 197 package = unstable.aerc; 198 198 }; 199 - programs.ssh.enable = true; 200 - programs.ssh.extraConfig = builtins.readFile ./ssh/extra; 199 + 200 + programs.ssh = { 201 + enable = true; 202 + extraConfig = builtins.readFile ./ssh/extra; 203 + }; 204 + 205 + services.ssh-agent.enable = true; 201 206 202 207 programs.direnv = { 203 208 enable = true; ··· 236 241 }; 237 242 xdg.configFile.i3status = { 238 243 source = ./i3status; 244 + recursive = true; 245 + }; 246 + 247 + xdg.configFile.ghostty = { 248 + source = ./ghostty; 239 249 recursive = true; 240 250 }; 241 251