refactor: move git config to common
This commit is contained in:
parent
4430100b9e
commit
be74ce41cc
4 changed files with 35 additions and 54 deletions
common/modules/git
18
common/modules/git/default.nix
Normal file
18
common/modules/git/default.nix
Normal 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"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue