Re-add todos-edit
Some checks failed
/ check (push) Has been cancelled

This commit is contained in:
Oliver Davies 2025-07-11 10:07:09 +01:00
parent 2bd14ac1a8
commit 839779236c
4 changed files with 12 additions and 0 deletions

View file

@ -42,6 +42,7 @@
tag-release
time-until
todos-add
todos-edit
update-all-git-repos
];

View file

@ -109,6 +109,7 @@
time-until
timer
todos-add
todos-edit
unmounter
update-all-git-repos
];

View file

@ -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
View file

@ -0,0 +1,9 @@
{ pkgs }:
pkgs.writeShellApplication {
name = "todos-edit";
text = ''
exec "$EDITOR" "$HOME/Documents/wiki/todo.txt"
'';
}