nix-config/pkgs/todos/todos-edit.nix
Oliver Davies 24fc8e6845
All checks were successful
/ check (push) Successful in 1m21s
Create scripts to add to and edit daily todo files
2025-05-14 22:46:00 +01:00

12 lines
244 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "todos-edit";
text = ''
TODOS_DIRECTORY="''${TODOS_DIRECTORY:-"$XDG_DOCUMENTS_DIR/todos"}"
export TODOS_DIRECTORY
"$EDITOR" "$TODOS_DIRECTORY/$(date +%Y-%m-%d).txt";
'';
}