mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-02 11:23:57 -05:00
make slimmed down handler user for HandlerOne migration
This commit is contained in:
parent
a43506f960
commit
662abbedb5
6 changed files with 184 additions and 0 deletions
32
home/handler/common/core/git.nix
Normal file
32
home/handler/common/core/git.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
# programs.git = {
|
||||
# enable = true;
|
||||
# userName = "TheWanderingCrow";
|
||||
# userEmail = "contact@wanderingcrow.net";
|
||||
# extraConfig = {
|
||||
# init = {
|
||||
# defaultBranch = "main";
|
||||
# };
|
||||
# push = {
|
||||
# autoSetupRemote = true;
|
||||
# };
|
||||
# };
|
||||
# lfs = {
|
||||
# enable = true;
|
||||
# skipSmudge = true;
|
||||
# };
|
||||
# };
|
||||
|
||||
programs.jujutsu = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.jujutsu;
|
||||
settings = {
|
||||
user = {
|
||||
email = "contact@wanderingcrow.net";
|
||||
name = "TheWanderingCrow";
|
||||
};
|
||||
ui.paginate = "never";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue