parent
2bd14ac1a8
commit
839779236c
4 changed files with 12 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
|||
tag-release
|
||||
time-until
|
||||
todos-add
|
||||
todos-edit
|
||||
update-all-git-repos
|
||||
];
|
||||
|
||||
|
|
|
@ -109,6 +109,7 @@
|
|||
time-until
|
||||
timer
|
||||
todos-add
|
||||
todos-edit
|
||||
unmounter
|
||||
update-all-git-repos
|
||||
];
|
||||
|
|
|
@ -23,6 +23,7 @@ in
|
|||
timer = callPackage ./timer.nix { };
|
||||
tmux-sessionizer = callPackage ./tmux-sessionizer { };
|
||||
todos-add = callPackage ./todos-add.nix { };
|
||||
todos-edit = callPackage ./todos-edit.nix { };
|
||||
unmounter = callPackage ./unmounter.nix { };
|
||||
update-all-git-repos = callPackage ./update-all-git-repos.nix { };
|
||||
|
||||
|
|
9
packages/todos-edit.nix
Executable file
9
packages/todos-edit.nix
Executable file
|
@ -0,0 +1,9 @@
|
|||
{ pkgs }:
|
||||
|
||||
pkgs.writeShellApplication {
|
||||
name = "todos-edit";
|
||||
|
||||
text = ''
|
||||
exec "$EDITOR" "$HOME/Documents/wiki/todo.txt"
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue