tool for detachable ptys with optional tailscale discovery
Something went wrong. Try again.
123456789101112131415161718192021222324252627{ description = "tobi";
inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; parts.url = "github:hercules-ci/flake-parts"; };
outputs = inp: inp.parts.lib.mkFlake { inputs = inp; } { systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; perSystem = { pkgs, ... }: { packages.default = import ./default.nix { inherit pkgs; };
devShells.default = pkgs.mkShell { packages = with pkgs; [ go gopls gotools golangci-lint zstd ]; }; }; };}