Files
nix-config/modules/programs/git.nix
T
2026-05-10 22:25:04 +07:00

17 lines
331 B
Nix

# настройки гита
{ self, ... }: {
flake.nixosModules.git = {
home-manager.users.${self.user}.imports = [{
programs.git = {
enable = true;
settings = {
user = {
name = "andre";
email = "vaylinnnn6@gmail.com";
};
};
};
}];
};
}