17 lines
265 B
Nix
17 lines
265 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
lazygit
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "sajenim";
|
|
userEmail = "its.jassy@pm.me";
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
}
|