feat: add git home config

This commit is contained in:
Jacob Bachmann 2023-08-30 19:38:41 +02:00
parent 7fc2437bed
commit ac8e402e8e
2 changed files with 13 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [
./alacritty.nix
./fzf.nix
./git.nix
./gnupg.nix
./neovim.nix
./sway.nix

View file

@ -0,0 +1,12 @@
{ ... }: {
programs.git = {
enable = true;
lfs.enable = true;
signing = {
signByDefault = true;
key = "732A612DAD28067D";
};
userEmail = "jacob.bachmann@posteo.de";
userName = "Jacob Bachmann";
};
}