chore(flake): enable go hardening workaround

This commit is contained in:
technofab 2025-07-30 21:54:13 +02:00
parent b2fb77ecc9
commit 22b43c9fe8
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ

View file

@ -36,9 +36,12 @@
}; };
devenv.shells.default = { devenv.shells.default = {
containers = pkgs.lib.mkForce {}; 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 = { pre-commit.hooks = {
treefmt = { treefmt = {