9 lines
208 B
Nix
9 lines
208 B
Nix
{ pkgs }:
|
|
{
|
|
formatting = pkgs.runCommand "check-formatting" { buildInputs = [ pkgs.nixfmt-rfc-style ]; } ''
|
|
cd ${./..}
|
|
nixfmt --check flake.nix pkgs checks devshells overlays
|
|
touch $out
|
|
'';
|
|
}
|