move programs to common
This commit is contained in:
parent
9b52db0aee
commit
e2c2018b90
8 changed files with 1161 additions and 525 deletions
15
common/git.nix
Normal file
15
common/git.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Noa Aarts";
|
||||
userEmail = "itepastra@gmail.com";
|
||||
extraConfig = {
|
||||
init = { defaultBranch = "main"; };
|
||||
safe.directory = "/etc/nixos";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue