nix-config/packages/todos-edit.nix
Oliver Davies 839779236c
Some checks failed
/ check (push) Has been cancelled
Re-add todos-edit
2025-07-11 10:07:09 +01:00

9 lines
135 B
Nix
Executable file

{ pkgs }:
pkgs.writeShellApplication {
name = "todos-edit";
text = ''
exec "$EDITOR" "$HOME/Documents/wiki/todo.txt"
'';
}