use blueprint for flake setup

This commit is contained in:
cato-001 2025-08-18 07:44:19 +02:00
parent 30826707cd
commit 0d7461fa92
6 changed files with 34 additions and 69 deletions

8
devshell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs }:
pkgs.mkShell {
packages = [
pkgs.mkGoEnv { pwd = ./.; }
pkgs.gomod2nix
];
}