All my system configs and packages in one repo
1
fork

Configure Feed

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

vcs changes

+19 -3
+19 -3
users/leah/programs/vcs.nix
··· 8 8 jujutsu 9 9 difftastic 10 10 watchman 11 + hwatch 11 12 ]; 12 13 13 - hjem.users.leah.environment.sessionVariables.DFT_DISPLAY = "inline"; 14 + hjem.users.leah.environment.sessionVariables = { 15 + DFT_DISPLAY = "inline"; 16 + HWATCH = "--no-title --color --mouse --keymap q=force_cancel"; 17 + }; 14 18 15 19 hjem.users.leah.ext.programs = { 16 20 git = { ··· 55 59 "--to" 56 60 "closest_pushable(@-)" 57 61 ]; 62 + 63 + monitor = [ 64 + "util" 65 + "exec" 66 + "--" 67 + "hwatch" 68 + "--exec" 69 + "--limit=1" 70 + "--" 71 + "jj" 72 + "--ignore-working-copy" 73 + "log" 74 + "--color=always" 75 + ]; 58 76 }; 59 77 60 78 revsets = { ··· 99 117 fsmonitor = "watchman"; 100 118 watchman.register-snapshot-trigger = true; 101 119 }; 102 - 103 - snapshot.auto-track = ''~(root:".direnv" | root:".zig-cache" | root:"zig-out")''; 104 120 }; 105 121 }; 106 122 };