11 lines
144 B
Nix
11 lines
144 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
userName = "Sojus07";
|
|
userEmail = "Sojus07";
|
|
};
|
|
};
|
|
}
|