10 lines
154 B
Nix
10 lines
154 B
Nix
|
{ inputs, outputs, lib, config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "sajenim";
|
||
|
userEmail = "its.jassy@pm.me";
|
||
|
};
|
||
|
}
|