a dotfile but it's really big
0
fork

Configure Feed

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

gopls modernize breaking my balls

karitham 98124f71 1d282f33

+13 -2
+12 -1
modules/dev/editor/helix.nix
··· 8 8 ... 9 9 }: 10 10 let 11 + # Remove modernize from gopls output since gotools already provides it 12 + gopls-cleaned = pkgs.runCommand "gopls" { } '' 13 + mkdir -p $out/bin 14 + # Copy all bins except modernize 15 + for bin in ${pkgs.gopls}/bin/*; do 16 + if [[ "$(basename $bin)" != "modernize" ]]; then 17 + ln -s $bin $out/bin/ 18 + fi 19 + done 20 + ''; 21 + 11 22 global-tools = with pkgs; [ 12 23 nixfmt 13 24 biome 14 25 golangci-lint 15 26 gotools 16 - gopls 27 + gopls-cleaned 17 28 sql-formatter 18 29 prettier 19 30 ];
+1 -1
modules/overlays/default.nix
··· 12 12 url = "https://github.com/karitham/gotools/commit/97818d312ebfc0e879de489035dee88e910fd95d.patch"; 13 13 hash = "sha256-2EYyelh/NmeO9PuCr5xlx9HhRrqfEjseXB7WLvdrJes="; 14 14 }; 15 - vendorHash = "sha256-UZNYHx5y+kRp3AJq6s4Wy+k789GDG7FBTSzCTorVjgg="; 15 + vendorHash = "sha256-HpWkPsRJ0vCqJi9LoZcVbzeoPQ2B9ftZwuS1r47W7Sc="; 16 16 }); 17 17 18 18 # https://github.com/benbjohnson/litestream/issues/912