mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
21 lines
352 B
Nix
21 lines
352 B
Nix
|
{ dotfiles, ... }:
|
||
|
|
||
|
{
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
package = pkgs.gitAndTools.gitFull; # contains git send-email et al
|
||
|
|
||
|
userName = "Alyxia Sother";
|
||
|
userEmail = "alyxia@riseup.net";
|
||
|
|
||
|
signing = {
|
||
|
key = "01E16C4E775A37E4";
|
||
|
signByDefault = true;
|
||
|
};
|
||
|
|
||
|
delta.enable = true;
|
||
|
};
|
||
|
|
||
|
programs.gitui.enable = true;
|
||
|
}
|