Files
util.nix/package/migration-name.nix
2025-02-14 21:06:51 +03:00

5 lines
187 B
Nix

{pkgs, ...}:
pkgs.writeShellScriptBin "migration-name" ''
curl --silent https://raw.githubusercontent.com/dwyl/english-words/master/words.txt | shuf -n2 | tr '\n' '_' | sed 's/_$//'
''