aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-04 18:57:57 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-04 19:07:28 +0200
commit8ef0e05298428942d68ff8840a9262dfb99d06a0 (patch)
treeeaa2e6e3c0ce0e586193c1a7275f322ff9a93446 /pkgs
parentrefactor(modules/lf/ctpv): Migrate the previewers to pkgs.writeShellApplication (diff)
downloadnixos-config-8ef0e05298428942d68ff8840a9262dfb99d06a0.zip
fix(modules/taskwarrior): Completely move to taskwarrior3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/hi/hibernate/package.nix4
-rw-r--r--pkgs/by-name/lo/lock/package.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/by-name/hi/hibernate/package.nix b/pkgs/by-name/hi/hibernate/package.nix
index 24754f09..54716606 100644
--- a/pkgs/by-name/hi/hibernate/package.nix
+++ b/pkgs/by-name/hi/hibernate/package.nix
@@ -1,7 +1,7 @@
{
sysLib,
systemd,
- taskwarrior,
+ taskwarrior3,
}:
sysLib.writeShellScript {
name = "hibernate";
@@ -10,6 +10,6 @@ sysLib.writeShellScript {
keepPath = false;
dependencies = [
systemd
- taskwarrior
+ taskwarrior3
];
}
diff --git a/pkgs/by-name/lo/lock/package.nix b/pkgs/by-name/lo/lock/package.nix
index 1c857cd6..a59fbdd0 100644
--- a/pkgs/by-name/lo/lock/package.nix
+++ b/pkgs/by-name/lo/lock/package.nix
@@ -1,13 +1,13 @@
{
writeShellApplication,
- taskwarrior,
+ taskwarrior3,
swaylock,
}:
writeShellApplication {
name = "lock";
text = builtins.readFile ./lock.sh;
runtimeInputs = [
- taskwarrior
+ taskwarrior3
swaylock
];
meta = {