nix config
2
fork

Configure Feed

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

misc: various small tweaks

+12 -9
+2 -2
home/profiles/cli/default.nix
··· 230 230 231 231 # task warrior 232 232 # TODO: make blocked a context? 233 - t = "task -BLOCKED -idea -backlog"; # Adding these to the next task makes modify things hard 233 + t = "task -BLOCKED -idea -backlog"; 234 234 tt = "taskwarrior-tui -r list"; 235 235 ti = "task +idea"; 236 - tb = "task list +backlog"; 236 + tb = "task +backlog list"; 237 237 ttb = "taskwarrior-tui -r backlog"; 238 238 tr = "task newest limit:page"; 239 239 tw = "task +wait";
+8 -6
home/profiles/sync/kitaab/default.nix
··· 5 5 # Note this will fail if index.wiki is open in vim while this runs 6 6 mkStartScript = name: pkgs.writeShellScript "${name}.sh" '' 7 7 # set -euo pipefail # Sometimes vimwiki is open and that causes `vimwiki tags rebuild` to fail, we still want to push to git in those cases 8 - PATH=/run/current-system/sw/bin:/etc/profiles/per-user/anish/bin: 9 - cd /home/anish/kitaab 8 + PATH=/run/current-system/sw/bin:/etc/profiles/per-user/anish/bin:$PATH 9 + cd /home/anish/kitaab/vimwiki 10 10 vimwiki tags rebuild 11 - # python3 poonam/main.py generateindexs 12 - # python3 poonam/main.py generatebacklinks 11 + cd .. 13 12 pushd kalpana/ 14 - fennel main.fnl 13 + ${pkgs.luaPackages.fennel}/bin/fennel main.fnl build 15 14 popd 16 - git add -A ./vimwiki/** 15 + pushd vimwiki/ 16 + git add -A . 17 + popd 17 18 git diff-index --quiet HEAD || git commit -m 'syncing kitaab' # if nothing, don't exit 1 18 19 git push 19 20 exit 0 ··· 23 24 systemd.user.services.kitaab-sync = { 24 25 Service = { 25 26 ExecStart = "${mkStartScript name}"; 27 + Path = [ pkgs.luaPackages.fennel ]; 26 28 }; 27 29 }; 28 30 systemd.user.timers.kitaab-sync = {
+2 -1
home/profiles/task/taskrc
··· 72 72 report.unblocked.columns=id,depends,project,tags,due,start.active,description 73 73 74 74 # Next 75 - report.next.filter=(status:pending -idea -backlog limit:0) # pro.not:ideas 75 + # It's not a good idea to filter this view, since modify depends on the next view 76 + report.next.filter=(status:pending limit:0) # pro.not:ideas -idea -backlog 76 77 report.next.labels=ID,Active,Deps,P,Project,Tag,Recur,S,Due,Until,Description 77 78 report.next.columns=id,start.age,depends,priority,project,tags,recur,scheduled.countdown,due.relative,until.remaining,description 78 79