Personal Nix flake
nixos home-manager nix
at develop 11 lines 250 B view raw
1set working-directory := '../' 2 3# Runs tests 4run *args: 5 @nix run .#nixtests:run -- \ 6 --snapshot-dir ./nix/tests/_snapshots \ 7 {{args}} \ 8 | sed -e 's|✅| |' -e 's|❌| |' 9 10# Updates test snapshots 11updatesnaps: (run '--update-snapshots')