AquaticOS/modules/programs/aquatic/aquatic-cli/git.nix

24 lines
No EOL
402 B
Nix

{ ... }:
{
flake.modules.nixos.aquatic-cli =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
];
};
flake.modules.homeManager.aquatic-cli =
{
programs.git = {
enable = true;
settings = {
user = {
name = "Herbert Duggan";
email = "aqua@aquaticservers.com";
};
fetch.prune = true;
};
};
};
}