chore(flake): enable go hardening workaround

This commit is contained in:
technofab 2025-07-30 21:54:13 +02:00
parent b2fb77ecc9
commit 22b43c9fe8
No known key found for this signature in database

View file

@ -36,9 +36,12 @@
};
devenv.shells.default = {
containers = pkgs.lib.mkForce {};
packages = with pkgs; [gopls gore go-junit-report];
packages = with pkgs; [gore go-junit-report];
languages.go.enable = true;
languages.go = {
enable = true;
enableHardeningWorkaround = true;
};
pre-commit.hooks = {
treefmt = {