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

9 lines
98 B
Nix
Raw Normal View History

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