NixOS configuration 馃獎
at refactor/full 13 lines 291 B view raw
1{ self, ... }: 2{ 3 perSystem = 4 { pkgs, config, ... }: 5 { 6 checks.formatting = 7 pkgs.runCommandLocal "formatting-checks" { nativeBuildInputs = [ config.formatter ]; } 8 '' 9 cd ${self} 10 treefmt --no-cache --fail-on-change 11 ''; 12 }; 13}