This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 334 B View raw
1{ inputs, ... }: 2{ 3 imports = [ inputs.git-hooks.flakeModule ]; 4 5 perSystem = 6 { config, ... }: 7 { 8 pre-commit.settings.hooks.treefmt = { 9 enable = true; 10 packageOverrides.treefmt = config.treefmt.build.wrapper; 11 }; 12 13 make-shells.default.shellHook = config.pre-commit.installationScript; 14 }; 15}