nix-config/packages/todos-edit.nix

10 lines
135 B
Nix
Raw Normal View History

2025-07-11 10:07:09 +01:00
{ pkgs }:
pkgs.writeShellApplication {
name = "todos-edit";
text = ''
exec "$EDITOR" "$HOME/Documents/wiki/todo.txt"
'';
}