flake-template-hell/templates/astro/flake/formatter.nix

19 lines
344 B
Nix
Raw Normal View History

2025-04-07 02:08:46 +01:00
{
writeShellApplication,
nixfmt-rfc-style,
deadnix,
statix,
}:
writeShellApplication {
name = "linter";
runtimeInputs = [
nixfmt-rfc-style
deadnix
statix
];
text = ''
nixfiles="$(find . -iname "*.nix")"
eval "$(awk '{printf "nixfmt %s; deadnix -e %s; statix fix %s\n", $0, $0, $0}' <<< "$nixfiles")"
'';
}