87 lines
1.8 KiB
Nix
87 lines
1.8 KiB
Nix
{
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
|
|
includes = [
|
|
{path = toString self.packages.${pkgs.system}.dracula.git;}
|
|
|
|
{
|
|
# FIXME: add https config
|
|
condition = "hasconfig:remote.*.url:git@github.com:*/**";
|
|
contents = {
|
|
user = {
|
|
email = "matt@nelim.org";
|
|
name = "matt1432";
|
|
};
|
|
};
|
|
}
|
|
|
|
{
|
|
condition = "hasconfig:remote.*.url:git@git.nelim.org:*/**";
|
|
contents = {
|
|
user = {
|
|
email = "matt@nelim.org";
|
|
name = "matt1432";
|
|
};
|
|
};
|
|
}
|
|
|
|
{
|
|
condition = "hasconfig:remote.*.url:git@gitlab.info.uqam.ca:*/**";
|
|
contents = {
|
|
user = {
|
|
email = "gj591944@ens.uqam.ca";
|
|
name = "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
|
|
'';
|
|
})
|
|
];
|
|
}
|