nixos-config/config/programs/git.nix

12 lines
294 B
Nix
Raw Normal View History

2022-01-18 13:49:11 +00:00
{ pkgs, ... }: {
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
lfs.enable = true;
signing.signByDefault = true;
2022-01-18 13:50:28 +00:00
signing.key = "206DA5E1DA0904B6EE4916BA3CEF5DDA915AECB0";
2022-01-18 13:49:11 +00:00
userEmail = "lotte@chir.rs";
userName = "Charlotte 🦝 Delenk";
};
2022-01-19 08:28:39 +00:00
}