mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-22 02:02:09 +07:00
17 lines
331 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}];
|
|
};
|
|
}
|