18 lines
278 B
Nix
18 lines
278 B
Nix
# Home-manager module
|
|
|
|
{ pkgs, ... }: {
|
|
programs = {
|
|
|
|
git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
|
|
userName = "matt1432";
|
|
userEmail = "matt@nelim.org";
|
|
|
|
includes = [
|
|
{ path = "${pkgs.dracula-theme}/git-colors"; }
|
|
];
|
|
};
|
|
};
|
|
}
|