9 lines
98 B
Nix
9 lines
98 B
Nix
|
{ ... }: {
|
||
|
text = ''
|
||
|
# Open `~/.todo.md` file.
|
||
|
function todo() {
|
||
|
vi ~/.todo.md
|
||
|
}
|
||
|
'';
|
||
|
}
|