diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-07-13 15:16:11 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-07-13 15:16:11 +0200 |
commit | 02a7d9ee523d0411145d97dc45003f376ccce98c (patch) | |
tree | 1d80c0a69195e0c8beee7234aa0cc5da8e7ce5a0 /modules/home/conf/taskwarrior/hooks | |
parent | build(treewide): Update (diff) | |
download | nixos-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.nix | 6 |
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 ])) |