nix-config/pkgs/todos/todos-add.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

13 lines
246 B
Nix

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