Keyboard shortcuts

Press ← or → to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

mods.git.additionalConfig

Additional git config

Type: attribute set of anything

Default:

{
  diff = {
    tool = "nvimdiff";
  };
  merge = {
    tool = "nvimdiff";
  };
  pull = {
    rebase = true;
  };
}

Example:

{
  pull = {
    rebase = false;
  };
}

mods.git.email

Git email

Type: string

Default: ""

Example: "globi@globus.glob"

mods.git.sshConfig

ssh configuration (keys for git)

Type: strings concatenated with ā€œ\nā€

Default: ""

Example:

''
  Host github.com
    
''

mods.git.username

Git user name

Type: string

Default: ""

Example: "globi"