Files
util.nix/package/migration-name.nix
2025-02-03 02:50:01 +00: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/_$//'
''