this repo has no description
1
fork

Configure Feed

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

fix: add homebrew to fish path if present

+6 -2
+1
hosts/shimmer/default.nix
··· 7 7 myconfig.tray.enable = false; 8 8 myconfig.virtualisation.enable = false; 9 9 10 + myconfig.programs.firefox.enable = false; 10 11 myconfig.programs.chromium.enable = false; 11 12 myconfig.programs.desktop-apps.enable = false; 12 13 myconfig.programs.espanso.enable = false;
+1 -2
modules/darwin/homebrew.nix
··· 13 13 onActivation.cleanup = "zap"; 14 14 15 15 taps = [ 16 - "homebrew/cask-versions" 17 16 "ovyerus/klog" 18 17 "ovyerus/tap" 19 18 ]; ··· 39 38 # Actually searches symlinks for apps, compared to Alfred. 40 39 "raycast" 41 40 "swiftformat-for-xcode" 42 - # "visual-studio-code" 43 41 # "vorta" 42 + "zen" 44 43 ]; 45 44 46 45 masApps = {
+4
modules/programs/fish.nix
··· 26 26 27 27 nix-your-shell fish | source 28 28 29 + if test -d /opt/homebrew/bin; 30 + fish_add_path /opt/homebrew/bin 31 + end; 32 + 29 33 # Docker compose alias that switches to if the standalone binary is present. 30 34 if which docker-compose &> /dev/null; 31 35 alias dc docker-compose;