This repository has been archived on 2024-04-17. You can view files and clone it, but cannot push or open issues/pull-requests.
dotfiles.nix/format.sh

7 lines
279 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
nix-shell \
--pure \
-p 'import (fetchTarball https://github.com/serokell/nixfmt/archive/e4f31f45799554ff378370256a24f606a3025b0a.tar.gz) {}' \
--run 'find . -name "*.nix" -not -ipath "*home-manager*" | xargs nixfmt --width 120'