this repo has no description
0
fork

Configure Feed

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

:sparkles: installing jujutsu globally with git

+26 -18
+9
home/git/default.nix
··· 38 38 }; 39 39 }; 40 40 41 + programs.jujutsu = { 42 + enable = true; 43 + settings.ui = { 44 + default-command = "log"; 45 + pager = "delta"; 46 + diff-formatter = ":git"; 47 + }; 48 + }; 49 + 41 50 programs.delta = { 42 51 enable = true; 43 52 enableGitIntegration = true;
+9 -18
home/personal.nix
··· 25 25 }; 26 26 }; 27 27 28 - programs.jujutsu = { 29 - enable = true; 30 - settings = { 31 - user = { 32 - name = "Pedro Correa"; 33 - email = "pedro8correa@gmail.com"; 34 - }; 28 + programs.jujutsu.settings = { 29 + user = { 30 + name = "Pedro Correa"; 31 + email = "pedro8correa@gmail.com"; 32 + }; 35 33 36 - signing = { 37 - behavior = "own"; 38 - backend = "gpg"; 39 - key = "2748A6200C9EE0B4"; 40 - }; 41 - 42 - ui = { 43 - default-command = "log"; 44 - pager = "delta"; 45 - diff-formatter = ":git"; 46 - }; 34 + signing = { 35 + behavior = "own"; 36 + backend = "gpg"; 37 + key = "2748A6200C9EE0B4"; 47 38 }; 48 39 }; 49 40
+8
home/work.nix
··· 25 25 signByDefault = true; 26 26 }; 27 27 }; 28 + 29 + programs.jujutsu.settings = { 30 + signing = { 31 + behavior = "own"; 32 + backend = "gpg"; 33 + key = "B67C86C563761C3A"; 34 + }; 35 + }; 28 36 }