Dendritic Nix - Community-driven Nix distribution based on the Dendritic pattern.
at main 276 B view raw
1{ inputs, ... }: 2{ 3 perSystem = 4 { ... }: 5 { 6 devshells.default = { 7 imports = [ 8 "${inputs.devshell}/extra/git/hooks.nix" 9 ]; 10 11 git.hooks = { 12 enable = true; 13 pre-commit.text = "check"; 14 }; 15 }; 16 }; 17}