loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

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

install go and gopls in nix flake devShell

+9 -6
+9 -6
flake.nix
··· 3 3 nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 4 4 flake-utils.url = "github:numtide/flake-utils"; 5 5 }; 6 - outputs = 7 - { nixpkgs, flake-utils, ... }: 6 + outputs = { 7 + nixpkgs, 8 + flake-utils, 9 + ... 10 + }: 8 11 flake-utils.lib.eachDefaultSystem ( 9 - system: 10 - let 12 + system: let 11 13 pkgs = nixpkgs.legacyPackages.${system}; 12 - in 13 - { 14 + in { 14 15 devShells.default = pkgs.mkShell { 15 16 buildInputs = with pkgs; [ 16 17 # generic ··· 31 32 # backend 32 33 gofumpt 33 34 sqlite 35 + go 36 + gopls 34 37 ]; 35 38 }; 36 39 }