···55 # scrappy script that requires muneem be cloned to /home/anish/usr/muneem
66 # you also gotta setup .envrc and add all the secrets there lol
77 # muneem needs secrets, and internet access to install dependencies, havent figured that out with nix yet
88- # muneem also depends on jdk11, but that's only to install dependencies, run `bb -m dhyan.main` once before installing this script
99- # If you've updated muneem, you'll want to cd to /home/anish/usr/dhyan and run git pull
88+ # muneem also depends on jdk11, but that's only to install dependencies, run `bb -m muneem.main` once before installing this script
99+ # If you've updated muneem, you'll want to cd to /home/anish/usr/muneem and run git pull
1010 systemd.services.muneem = {
1111 serviceConfig.Type = "oneshot";
1212 path = with pkgs; [
···1717 chromedriver
1818 chromium
1919 ];
2020- startAt = "Tue *03:00:00";
2020+ startAt = "Thu *03:00:00";
2121 script = ''
2222 cd /home/anish/usr/muneem
2323 source .envrc
···3030 systemd.timers.muneem = {
3131 wantedBy = [ "timers.target" ];
3232 partOf = [ "muneem.service" ];
3333- timerConfig.OnCalendar = [ "Tue *03:00:00" ];
3333+ timerConfig.OnCalendar = [ "Thu *03:00:00" ];
3434 };
3535}