11 lines
220 B
Nix
11 lines
220 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Cyryl Płotnicki";
|
|
userEmail = "cyplo@cyplo.net";
|
|
includes = [
|
|
{ path = "../.gitconfig.linux.private"; }
|
|
];
|
|
};
|
|
}
|