diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-04 16:45:17 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-04 16:45:17 +0200 |
commit | 6f3a52107f5014bdc3f29ecdf74a3a4b1af0e8ff (patch) | |
tree | d1bb446ba57d07b4ae070d15e350be43b54fb79b /modules/common | |
parent | fix(modules/timewarrior): Use the correct attribute path for the taskwarrior ... (diff) | |
download | nixos-config-6f3a52107f5014bdc3f29ecdf74a3a4b1af0e8ff.zip |
fix(modules/common): Correctly specify the `projects.json` file
Diffstat (limited to '')
-rw-r--r-- | modules/common/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/common/default.nix b/modules/common/default.nix index 48fdf241..21b0f200 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -192,7 +192,7 @@ }; tskm = { enable = true; - projects = builtins.fromJSON (builtins.readFile ./projects.nix); + projects = builtins.fromJSON (builtins.readFile ./projects.json); }; yambar.enable = true; yt.enable = true; |