labs/format.sh

7 lines
211 B
Bash
Raw Permalink Normal View History

2024-06-22 17:56:18 +00:00
#!/usr/bin/env nix-shell
#!nix-shell -i bash -I "nixpkgs=https://github.com/nixos/nixpkgs/archive/nixos-24.05.tar.gz" -p nixfmt-rfc-style
2024-06-22 17:58:44 +00:00
files=$(find . -name "*.nix" -type f)
nixfmt ${1:-"--verify"} ${files}