1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-12-14 13:43:10 +01:00
commit aacd3c2d92
10 changed files with 553 additions and 0 deletions

14
devenv.nix Normal file
View file

@ -0,0 +1,14 @@
{
languages.go.enable = true;
pre-commit.hooks = {
# Go
gotest.enable = true;
golangci-lint.enable = true;
# Nix
alejandra.enable = true;
deadnix.enable = true;
statix.enable = true;
};
}