24 lines
No EOL
597 B
Nix
24 lines
No EOL
597 B
Nix
{ lib, pkgs, config, ...}: let
|
|
inherit (lib) mkIf mkEnableOption mkOption;
|
|
cfg = config.chuj.stuff.git;
|
|
user = config.chuj.system.user;
|
|
in {
|
|
options.chuj.stuff.git = {
|
|
enable = mkEnableOption "git";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.git ];
|
|
home-manager.users.${user}.programs.git = {
|
|
enable = true;
|
|
userName = "krizej";
|
|
userEmail = "krizej@protonmail.com";
|
|
extraConfig.init.defaultBranch = "master";
|
|
ignores = [
|
|
".idea/"
|
|
"build/"
|
|
".venv/"
|
|
"**/__pycache__/"
|
|
];
|
|
};
|
|
};
|
|
} |