tangled
alpha
login
or
join now
ethanholz.com
/
nix-config
0
fork
atom
Reproducible dotfiles in nix
0
fork
atom
overview
issues
pulls
pipelines
feat: add jujutsu
ethanholz.com
5 months ago
15d38fed
951f9712
+20
1 changed file
expand all
collapse all
unified
split
lib
shared
home.nix
+20
lib/shared/home.nix
···
475
475
theme = "carbonfox";
476
476
};
477
477
};
478
478
+
479
479
+
programs.jujutsu = {
480
480
+
enable = true;
481
481
+
settings = {
482
482
+
user = {
483
483
+
name = "Ethan Holz";
484
484
+
email = "ethan.holz@thoriumworks.com";
485
485
+
};
486
486
+
ui = {
487
487
+
paginate = "never";
488
488
+
};
489
489
+
signing = {
490
490
+
behavior = "own";
491
491
+
backend = "gpg";
492
492
+
};
493
493
+
git = {
494
494
+
write-change-id-header = true;
495
495
+
};
496
496
+
};
497
497
+
};
478
498
}