all repos — site @ 8535bfcd75a618e539132fc6f609ca4dc7c75fe9

source for my site, found at icyphox.sh

flake.nix (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
{
  description = "site";

  outputs = { self, nixpkgs }: {
    devShell.x86_64-linux =
      let
        pkgs = nixpkgs.legacyPackages.x86_64-linux;
      in
      pkgs.mkShell {
        buildInputs = with pkgs; [
          go
          gotools
          gnumake
          entr
        ];
      };
  };
}