Files
dotfiles/home/natto/git.nix
Amneesh Singh 5fef417fb0 home/natto: move around stuff
move git and zsh from hosts/satori and split services.nix

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-24 11:36:04 +05:30

17 lines
323 B
Nix

{ config, pkgs, ... }:
{
programs.git = {
enable = true;
package = pkgs.git.override {
doInstallCheck = false;
sendEmailSupport = true;
withManual = false;
};
};
age.secrets.gitconfig = {
file = ./secrets/.gitconfig.age;
path = "${config.home.homeDirectory}/.gitconfig";
};
}