oliverdavies.uk/drafts.nix

12 lines
166 B
Nix
Raw Normal View History

2025-08-22 00:42:54 +01:00
{ pkgs }:
pkgs.writeShellApplication {
name = "drafts";
runtimeInputs = with pkgs; [ gnugrep ];
text = ''
grep -r 'draft: true' "''${1:-source}"
2025-08-22 00:42:54 +01:00
'';
}