parent
2bd14ac1a8
commit
839779236c
4 changed files with 12 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
||||||
tag-release
|
tag-release
|
||||||
time-until
|
time-until
|
||||||
todos-add
|
todos-add
|
||||||
|
todos-edit
|
||||||
update-all-git-repos
|
update-all-git-repos
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -109,6 +109,7 @@
|
||||||
time-until
|
time-until
|
||||||
timer
|
timer
|
||||||
todos-add
|
todos-add
|
||||||
|
todos-edit
|
||||||
unmounter
|
unmounter
|
||||||
update-all-git-repos
|
update-all-git-repos
|
||||||
];
|
];
|
||||||
|
|
|
@ -23,6 +23,7 @@ in
|
||||||
timer = callPackage ./timer.nix { };
|
timer = callPackage ./timer.nix { };
|
||||||
tmux-sessionizer = callPackage ./tmux-sessionizer { };
|
tmux-sessionizer = callPackage ./tmux-sessionizer { };
|
||||||
todos-add = callPackage ./todos-add.nix { };
|
todos-add = callPackage ./todos-add.nix { };
|
||||||
|
todos-edit = callPackage ./todos-edit.nix { };
|
||||||
unmounter = callPackage ./unmounter.nix { };
|
unmounter = callPackage ./unmounter.nix { };
|
||||||
update-all-git-repos = callPackage ./update-all-git-repos.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