oliverdavies.uk/drafts.nix
2025-08-22 00:42:54 +01:00

11 lines
156 B
Nix

{ pkgs }:
pkgs.writeShellApplication {
name = "drafts";
runtimeInputs = with pkgs; [ gnugrep ];
text = ''
grep -r 'draft: true' source
'';
}