mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
21 lines
417 B
Nix
21 lines
417 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
gh
|
|
pre-commit
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|