Files
my-pkgs/checks/default.nix
2026-02-06 16:13:02 +01:00

8 lines
148 B
Nix

{ pkgs }:
{
formatting = pkgs.runCommand "check-formatting" { buildInputs = [ pkgs.nixfmt-rfc-style ]; } ''
cd ${./..}
touch $out
'';
}