Skip to content

Commit

Permalink
fix(filebot): set up updateInterval
Browse files Browse the repository at this point in the history
Default update interval time is too big. I decerease to 1 minute
  • Loading branch information
Wittano committed Jul 4, 2024
1 parent ed359f4 commit f5e4f43
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions modules/services/filebot.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ in
services.filebot = {
enable = cfg.enable;
user = "wittano";
updateInterval = "1m";
configPath = mapper.toTOML "filebot.toml" {
Pictures = {
src = [ "${homeDir}/Downloads/*.(gif|jpe?g|tiff?|png|webp|bmp)" ];
dest = "${homeDir}/Pictures";
};
ToDocument = {
Docs = {
src = [ "${homeDir}/Downloads/*.(zip|tar*)" "${homeDir}/Downloads/*.pdf" ];
dest = "${homeDir}/Documents";
};
Expand All @@ -41,10 +42,6 @@ in
moveToTrash = true;
after = 1;
};
Jars = {
src = [ "${homeDir}/Downloads/*.jar" ];
dest = "~/mc-mods";
};
};
};
};
Expand Down

0 comments on commit f5e4f43

Please sign in to comment.