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