nix/home/program/bash/module/Todo.nix

10 lines
109 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
# Open `~/.todo.md` file.
function todo() {
vi ~/.todo.md
}
'';
2024-04-06 03:03:58 +03:00
}