mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-21 02:02:09 +07:00
21 lines
363 B
Nix
21 lines
363 B
Nix
{
|
|
flake.nixosModules.git = {
|
|
home-manager.users.matthew.imports = [
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
name = "Senior Matt";
|
|
email = "matthew.prakhov@gmail.com";
|
|
};
|
|
core = {
|
|
editor = "nvim";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|