nixos-config/user/git.nix

20 lines
207 B
Nix
Raw Permalink Normal View History

{
config,
pkgs,
lib,
...
}:
let
2024-06-05 01:18:48 -03:00
inherit (config.my) username mail;
in
{
2022-08-05 21:09:52 -03:00
config = {
programs.git = {
enable = true;
2024-05-25 01:03:51 -03:00
lfs.enable = true;
2022-08-05 21:09:52 -03:00
extraConfig = {
};
};
};
}