5 lines
137 B
Bash
Executable file
5 lines
137 B
Bash
Executable file
#!/usr/bin/env bash
|
|
nix flake check --show-trace 2>&1 \
|
|
| rg -F 'at /nix/store' \
|
|
| cut -d'/' -f5- \
|
|
| uniq
|