Better organization :')
This commit is contained in:
17
modules/home/git.nix
Normal file
17
modules/home/git.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ settings, ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
gpg.format = "ssh";
|
||||
commit.gpgsign = true;
|
||||
user = {
|
||||
name = settings.gitName;
|
||||
email = settings.gitEmail;
|
||||
signingkey = settings.gitPubKey;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user