mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-27 00:48:30 +02:00
modularized the config
This commit is contained in:
parent
fa032ceaca
commit
7e3ab85170
10 changed files with 375 additions and 355 deletions
15
users/rouven/modules/git/default.nix
Normal file
15
users/rouven/modules/git/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Rouven Seifert";
|
||||
userEmail = "rouven@rfive.de";
|
||||
extraConfig = {
|
||||
user.signingkey = "B95E8FE6B11C4D09";
|
||||
pull.rebase = false;
|
||||
init.defaultBranch = "main";
|
||||
commit.gpgsign = true;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue