dotfiles/nixos/.flake/home/programs/git.nix.org
2024-09-28 00:01:09 -05:00

407 B

Git Configuration

Specify my name and email for git. Also enable delta and pull.rebase.

{ config, pkgs, ... }:

{
  programs.git = {
    enable = true;
    userName = "Jacob Janzen";
    userEmail = "jacob.a.s.janzen@gmail.com";
    delta.enable = true;
    extraConfig = {
      pull.rebase = true;
    };
  };
}