1
Fork 0
nixos-system-config/users/hu/packages/git.nix

14 lines
240 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
programs.git = {
enable = true;
userName = "caem";
userEmail = "caem@dirae.org";
signing = {
key = "D125101DC74D392FEFDFD54AF4F7229F8B860E9F";
signByDefault = true;
};
};
}