The configuration files for all my Nix systems
4

Configure Feed

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

feat(carbon): configure zsh program settings

hanna (Jun 8, 2026, 6:28 PM EDT) 2ecd8dad 66a1a72a

+13
+1
hosts/carbon/default.nix
··· 4 4 ./system/fonts.nix 5 5 ./system/brew.nix 6 6 ./system/docs.nix 7 + ./system/env.nix 7 8 ./system/net.nix 8 9 ./system/nix.nix 9 10 ./system/sys.nix
+12
hosts/carbon/system/env.nix
··· 1 + { 2 + programs = { 3 + bash.enable = false; 4 + direnv.enable = true; 5 + gnupg.agent.enable = true; 6 + 7 + zsh = { 8 + enable = true; 9 + enableGlobalCompInit = false; 10 + }; 11 + }; 12 + }