Patch tealdeer update settings
autoUpdate moved to auto_update. Added auto_update_interval_hours
Change-Id: Ib7df677242827c3f6f185842f7356565d0a3616e
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/519
Tested-by: Skyler Grey <minion@clicks.codes>
Reviewed-by: Skyler Grey <minion@clicks.codes>
diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix
index 4b3dff7..060cdf6 100644
--- a/modules/home/shell/default.nix
+++ b/modules/home/shell/default.nix
@@ -103,7 +103,10 @@
programs.tealdeer = lib.mkIf config.chimera.shell.usefulPackages.enable {
enable = true;
- settings.updates.autoupdate = true;
+ settings.updates = {
+ auto_update = true;
+ auto_update_interval_hours = 72;
+ };
};
programs.jq = lib.mkIf config.chimera.shell.usefulPackages.enable { enable = true; };