nixos/parts/modules/shell/git.nix
2025-02-18 20:17:57 +01:00

19 lines
395 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
git
];
fireproof.home-manager.programs.git = {
enable = true;
userEmail = "nickolaj@fireproof.website";
userName = "Nickolaj Jepsen";
includes = [
{
condition = "hasconfig:remote.*.url:*Digital-Udvikling*";
contents = {
user.email = "nij@ao.dk";
};
}
];
};
}