refactor: move git config to common

This commit is contained in:
matt1432 2023-10-15 16:41:34 -04:00
parent 4430100b9e
commit be74ce41cc
4 changed files with 35 additions and 54 deletions
common/modules/git

View file

@ -0,0 +1,18 @@
# Home-manager module
{ pkgs, ... }: {
programs = {
git = {
enable = true;
lfs.enable = true;
userName = "matt1432";
userEmail = "matt@nelim.org";
includes = [
{ path = "${pkgs.dracula-theme}/git-colors"; }
];
};
};
}