Add devenv nix

This commit is contained in:
Armel van Ravels
2026-06-19 09:02:31 +02:00
parent 49b7373ce1
commit cbf96db004
14 changed files with 247 additions and 70 deletions

19
devenv.nix Normal file
View File

@@ -0,0 +1,19 @@
{ pkgs
, lib
, config
, ...
}:
{
treefmt.enable = true;
treefmt.config.programs.nixpkgs-fmt.enable = true;
git-hooks = {
enable = true;
hooks = {
treefmt.enable = true;
};
};
}