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