this repo has no description
1
fork

Configure Feed

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

feat(git): jujutsu changes

- enable `git.write-change-id-header`
- add `tug-here` alias

+4 -2
+1 -1
modules/programs/desktop-cli.nix
··· 29 29 nixos.ifEnabled = {myconfig, ...}: { 30 30 programs.nh = { 31 31 enable = true; 32 - flake = "/home/${myconfig.constants.username}/.config/nixos"; 32 + flake = "/etc/nixos"; 33 33 }; 34 34 }; 35 35
+3 -1
modules/programs/git.nix
··· 99 99 }; 100 100 101 101 aliases = { 102 - tug = ["bookmark" "move" "--from" "closest_bookmark(@-)" "--to" "@-"]; 103 102 e = ["edit"]; 104 103 n = ["new"]; 104 + tug = ["bookmark" "move" "--from" "closest_bookmark(@-)" "--to" "@-"]; 105 + tug-here = ["bookmark" "move" "--from" "closest_bookmark(@)" "--to" "@"]; 105 106 }; 106 107 107 108 merge-tools.mergiraf = { ··· 112 113 git = { 113 114 sign-on-push = true; 114 115 push-new-bookmarks = true; 116 + write-change-id-header = true; 115 117 }; 116 118 117 119 signing = {