this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

deploying & testing muneem today

+4 -4
+4 -4
profiles/muneem/default.nix
··· 5 5 # scrappy script that requires muneem be cloned to /home/anish/usr/muneem 6 6 # you also gotta setup .envrc and add all the secrets there lol 7 7 # muneem needs secrets, and internet access to install dependencies, havent figured that out with nix yet 8 - # muneem also depends on jdk11, but that's only to install dependencies, run `bb -m dhyan.main` once before installing this script 9 - # If you've updated muneem, you'll want to cd to /home/anish/usr/dhyan and run git pull 8 + # muneem also depends on jdk11, but that's only to install dependencies, run `bb -m muneem.main` once before installing this script 9 + # If you've updated muneem, you'll want to cd to /home/anish/usr/muneem and run git pull 10 10 systemd.services.muneem = { 11 11 serviceConfig.Type = "oneshot"; 12 12 path = with pkgs; [ ··· 17 17 chromedriver 18 18 chromium 19 19 ]; 20 - startAt = "Tue *03:00:00"; 20 + startAt = "Thu *03:00:00"; 21 21 script = '' 22 22 cd /home/anish/usr/muneem 23 23 source .envrc ··· 30 30 systemd.timers.muneem = { 31 31 wantedBy = [ "timers.target" ]; 32 32 partOf = [ "muneem.service" ]; 33 - timerConfig.OnCalendar = [ "Tue *03:00:00" ]; 33 + timerConfig.OnCalendar = [ "Thu *03:00:00" ]; 34 34 }; 35 35 }