Files
nixos-config/home/shell/git.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";
};
}