Simon Shine 756f051570
feat: Add Nix support (#109)
Add a nix flake to run hcloud-upload-image through the Nix package manager.
2026-02-25 21:17:32 +01:00

10 lines
123 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
go
gopls
gotools
go-tools
];
}