mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
445 B
Nix
22 lines
445 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Kat Inskip";
|
|
userEmail = "kat@inskip.me";
|
|
extraConfig = {
|
|
init = { defaultBranch = "main"; };
|
|
protocol.gcrypt.allow = "always";
|
|
annex = {
|
|
autocommit = false;
|
|
backend = "BLAKE2B512";
|
|
synccontent = true;
|
|
};
|
|
};
|
|
signing = {
|
|
key = "0xE8DDE3ED1C90F3A0";
|
|
signByDefault = true;
|
|
};
|
|
};
|
|
}
|