[Git] Move into own module
This commit is contained in:
parent
25e08f5e2d
commit
2a5bc5c15c
2 changed files with 24 additions and 16 deletions
23
nixos/modules/utils/git/default.nix
Normal file
23
nixos/modules/utils/git/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.tdpeuter = {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "tdpeuter";
|
||||
userEmail = "tibo.depeuter@gmail.com";
|
||||
extraConfig = {
|
||||
core.editor = "vim";
|
||||
};
|
||||
ignores = [
|
||||
"*.swp"
|
||||
];
|
||||
includes = [
|
||||
{
|
||||
path = "~/.gitconfig-ugent";
|
||||
condition = "gitdir:~/Nextcloud/Documenten/UGent";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue