21 lines
275 B
Nix
21 lines
275 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
gh
|
|
];
|
|
|
|
programs.lazygit = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
|
|
userName = "Thomas Syms";
|
|
userEmail = "thomassyms@gmail.com";
|
|
};
|
|
|
|
home.shellAliases = {
|
|
lgit = "lazygit";
|
|
};
|
|
}
|