zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
{
  lib,
  pkgs,
  config,
  ...
}:
let
  inherit (lib) types;
  cfg = config.programs.git;
  settingsFormat = pkgs.formats.ini { };

in
{

  options.programs.git = {
    enable = lib.mkEnableOption "git";
    ignores = lib.mkOption {
      default = { };
      type = with types; listOf str;
    };
    settings = lib.mkOption {
      default = { };
      type = settingsFormat.type;
    };
  };

  config = lib.mkIf cfg.enable {
    packages = [ pkgs.git ];

    file.xdg_config = {
      "git/config".source = settingsFormat.generate "gitconfig.ini" cfg.settings;
      "git/ignore".text = lib.concatStringsSep "\n" cfg.ignores;
    };
  };

}