about summary refs log tree commit diff stats
path: root/modules/home/conf/taskwarrior/hooks
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-07-13 15:16:11 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-07-13 15:16:11 +0200
commit02a7d9ee523d0411145d97dc45003f376ccce98c (patch)
tree1d80c0a69195e0c8beee7234aa0cc5da8e7ce5a0 /modules/home/conf/taskwarrior/hooks
parentbuild(treewide): Update (diff)
downloadnixos-config-02a7d9ee523d0411145d97dc45003f376ccce98c.tar.gz
nixos-config-02a7d9ee523d0411145d97dc45003f376ccce98c.zip
fix(modules): Adopt to flake update
Diffstat (limited to 'modules/home/conf/taskwarrior/hooks')
-rw-r--r--modules/home/conf/taskwarrior/hooks/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/home/conf/taskwarrior/hooks/default.nix b/modules/home/conf/taskwarrior/hooks/default.nix
index 4bac0ca7..ef97e1b5 100644
--- a/modules/home/conf/taskwarrior/hooks/default.nix
+++ b/modules/home/conf/taskwarrior/hooks/default.nix
@@ -48,7 +48,8 @@
     buildInputs = [
       pkgs.timewarrior
       pkgs.taskwarrior
-      (pkgs.python3.withPackages (pythonPackages:
+      # TODO: Use a `taskw` package, that actually supports newer python variants <2024-07-13>
+      (pkgs.python311.withPackages (pythonPackages:
         with pythonPackages; [
           taskw
         ]))
@@ -67,7 +68,8 @@
     ];
     buildInputs = [
       pkgs.taskwarrior
-      (pkgs.python3.withPackages (pythonPackages:
+      # TODO: Use a `taskw` package, that actually supports newer python variants <2024-07-13>
+      (pkgs.python311.withPackages (pythonPackages:
         with pythonPackages; [
           taskw
         ]))