The configuration files for all my Nix systems
4

Configure Feed

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

refactor(carbon): move packages from brew to nix

hanna (Jun 26, 2026, 7:55 PM EDT) 9a53a4d2 9911de1d

+12 -12
+1 -11
hosts/carbon/system/brew.nix
··· 7 7 onActivation.cleanup = "zap"; 8 8 9 9 brews = [ 10 - "bat" 11 - "direnv" 12 - "gnupg" 13 - "helix" 14 - "lsd" 15 - "mole" 16 - "starship" 17 - "opencode" 18 10 "container" 19 - "wget" 20 - "zstd" 21 - "xz" 11 + "mole" 22 12 ]; 23 13 24 14 casks = [
+11 -1
hosts/carbon/system/env.nix
··· 1 - { self, pkgs, ... }: 1 + { self, inputs, pkgs, ... }: 2 2 3 3 { 4 4 environment.systemPackages = with pkgs; [ 5 + inputs.agents.packages.${system}.opencode 5 6 self.packages.${system}.tack 7 + starship 8 + direnv 9 + helix 10 + gnupg 11 + wget 12 + zstd 13 + bat 14 + lsd 15 + xz 6 16 ]; 7 17 8 18 programs = {