{ pkgs, self, ... }: let mkRemoteConf = remote: email: name: { condition = "hasconfig:remote.*.url:${remote}:*/**"; contents.user = {inherit email name;}; }; mkDefaultRemote = remote: mkRemoteConf remote "matt@nelim.org" "matt1432"; in { programs = { git = { enable = true; lfs.enable = true; includes = [ {path = toString self.legacyPackages.${pkgs.system}.dracula.git;} (mkDefaultRemote "https://github.com") (mkDefaultRemote "git@github.com") (mkDefaultRemote "git@git.nelim.org") (mkRemoteConf "git@gitlab.info.uqam.ca" "gj591944@ens.uqam.ca" "Mathis Hurtubise") ]; delta = { enable = true; options = { side-by-side = true; line-numbers-zero-style = "#E6EDF3"; #BD93F9"; }; }; extraConfig = { diff.sopsdiffer.textconv = "sops --config /dev/null -d"; # https://github.com/dandavison/delta/issues/630#issuecomment-860046929 pager = let cmd = "LESS='LRc --mouse' ${pkgs.delta}/bin/delta"; in { diff = cmd; show = cmd; stash = cmd; log = cmd; reflog = cmd; }; }; }; }; home.packages = with pkgs; [ (writeShellApplication { name = "chore"; runtimeInputs = [git]; text = '' DIR=''${1:-"$FLAKE"} cd "$DIR" || exit 1 git add flake.lock git commit -m 'chore: update flake.lock' git push ''; }) ]; }