fix some shutdown bugs and so on

This commit is contained in:
2026-07-10 16:04:00 +02:00
parent 01c73819c0
commit 98a4c81701
8 changed files with 98 additions and 4 deletions

30
flake.nix Normal file
View File

@@ -0,0 +1,30 @@
{
description = "Reverse proxy";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
go
gopls
go-tools
];
};
}
);
}