This commit is contained in:
2026-04-28 14:20:52 +02:00
commit 20bfd89347
5 changed files with 252 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
description = "Dev environment for shit-proxy";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }:
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
{
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
go_1_26
];
};
};
}