oliverdavies.uk/flake-modules/drafts.nix

17 lines
289 B
Nix
Raw Normal View History

2025-08-25 18:35:31 +01:00
{
perSystem =
{ pkgs, ... }:
{
packages.drafts = pkgs.writeShellApplication {
name = "drafts";
runtimeInputs = with pkgs; [ gnugrep ];
text = ''
echo "oob"
grep -r 'draft: true' "''${1:-source}"
'';
};
};
}