nix-dotfiles/home/programs/git/default.nix

241 lines
6.4 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
let
cfg = config.programs.git;
github-uri-prefixes = [
# Preferred
"github:"
# Alternative
"https://github.com/"
"ssh://git@github.com:"
"git@github.com:"
"github.com:"
];
in
2022-03-07 16:01:52 +01:00
{
# TODO: convert to template once nix-sops supports it in hm module
sops.secrets."git/nordicsemi-config" = { };
2022-03-07 16:01:52 +01:00
programs.git = lib.mkMerge [
{
enable = true;
package = pkgs.gitFull;
2022-08-18 23:17:01 +02:00
userName = "h7x4";
userEmail = "h7x4@nani.wtf";
2022-03-07 16:01:52 +01:00
signing = {
key = "46B9228E814A2AAC";
signByDefault = true;
};
2024-06-25 19:03:17 +02:00
lfs.enable = true;
delta = {
enable = true;
options = {
line-numbers = true;
side-by-side = true;
theme = "Monokai Extended Origin";
};
};
aliases = {
aliases = "!git config --get-regexp alias | sed -re 's/alias\\.(\\S*)\\s(.*)$/\\1 = \\2/g'";
delete-merged = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d";
graph = "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all";
graphv = "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all";
forcepush = "push --force-with-lease --force-if-includes";
authors = "shortlog --summary --numbered --email";
si = "switch-interactive";
rebase-author = "rebase -i -x \"git commit --amend --reset-author -CHEAD\"";
2022-03-07 16:01:52 +01:00
};
extraConfig = {
core = {
whitespace = "space-before-tab,-indent-with-non-tab,trailing-space";
untrackedCache = true;
editor = "nvim";
};
2024-07-03 23:10:51 +02:00
safe.directory = "*";
2024-06-02 16:24:39 +02:00
rerere.enabled = true;
2024-06-02 16:24:39 +02:00
branch.sort = "-committerdate";
2022-03-07 16:01:52 +01:00
"color \"branch\"".upstream = "cyan";
color.ui = "auto";
2024-07-03 23:10:51 +02:00
init.defaultBranch = "main";
2024-07-03 23:10:51 +02:00
fetch = {
prune = true;
fsckObjects = true;
};
2024-07-03 23:10:51 +02:00
transfer.fsckObjects = true;
2024-07-03 23:10:51 +02:00
receive.fsckObjects = true;
pull.rebase = true;
2024-07-03 23:10:51 +02:00
rebase = {
autoStash = true;
autoSquash = true;
abbreviateCommands = true;
updateRefs = true;
};
2022-03-07 16:01:52 +01:00
push = {
default = "current";
autoSetupRemote = true;
followTags = true;
};
2022-03-07 16:01:52 +01:00
merge = {
tool = "nvimdiff";
conflictstyle = "diff3";
colorMoved = "zebra";
};
2022-03-07 16:01:52 +01:00
mergetool.keepBackup = false;
"mergetool \"nvimdiff\"".cmd = "nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'";
2024-07-03 23:10:51 +02:00
diff = {
mnemonicPrefix = true;
renames = true;
tool = "nvimdiff";
submodule = "log";
};
2022-03-07 16:01:52 +01:00
status = {
showUntrackedFiles = "all";
relativePaths = true;
submoduleSummary = true;
};
2024-07-03 23:10:51 +02:00
log.date = "iso";
2024-07-03 23:10:51 +02:00
submodule.recurse = true;
grep = {
break = true;
heading= true;
lineNumber = true;
extendedRegexp = true;
};
# Run autocorrected command after 3 seconds
help.autocorrect = "30";
github.user = "h7x4";
2022-03-07 16:01:52 +01:00
"url \"${lib.head github-uri-prefixes}\"".insteadOf = lib.tail github-uri-prefixes;
2022-03-07 16:01:52 +01:00
web.browser = "google-chrome-stable";
"filter \"lfs\"" = {
required = true;
smudge = "git-lfs smudge -- %f";
process = "git-lfs filter-process";
clean = "git-lfs clean -- %f";
};
};
ignores = [
".vscode"
".direnv"
".envrc"
"shell.nix"
2024-07-03 23:10:51 +02:00
];
}
(let
uri-prefixes = [
# Preferred
"pvv-git:"
2024-07-03 23:10:51 +02:00
# Alternative
2024-07-03 23:10:51 +02:00
"https://git.pvv.org/"
"ssh://gitea@git.pvv.ntnu.no:2222/"
"gitea@git.pvv.ntnu.no:2222/"
"gitea@git.pvv.ntnu.no:"
"git.pvv.ntnu.no:"
];
2024-06-02 16:24:39 +02:00
prefixes-per-org = let
organizations = [
"Drift"
"Projects"
];
in lib.genAttrs organizations (org: map (uri-prefix: "${uri-prefix}${org}") uri-prefixes);
in {
extraConfig."url \"${lib.head uri-prefixes}\"".insteadOf = lib.tail uri-prefixes;
includes = map (x: {
contentSuffix = "pvv.gitconfig";
condition = "hasconfig:remote.*.url:${x}**";
contents = {
user = {
email = "oysteikt@pvv.ntnu.no";
name = "Øystein Tveit";
};
};
}) (lib.flatten (lib.attrValues prefixes-per-org));
})
2022-03-07 16:01:52 +01:00
(let
bitbucket-uri-prefixes = [
# Preferred
"bitbucket-nordicsemi:"
# Alternative
"ssh://git@bitbucket.nordicsemi.no:7999"
"https://projecttools.nordicsemi.no/bitbucket/scm"
];
prefixes-per-org = let
organizations = [
"NordicSemiconductor"
"NordicPlayground"
"nrfconnect"
];
in lib.genAttrs organizations (org: map (uri-prefix: "${uri-prefix}${org}") github-uri-prefixes);
in {
extraConfig = lib.mergeAttrs
{
"url \"${lib.head bitbucket-uri-prefixes}\"".insteadOf = lib.tail bitbucket-uri-prefixes;
}
(lib.mapAttrs' (org: uri-prefixes: {
name = "url \"github-nordicsemi:${org}\"";
value.insteadOf = uri-prefixes;
}) prefixes-per-org)
;
includes = map (x: {
contentSuffix = "nordicsemi.gitconfig";
condition = "hasconfig:remote.*.url:${x}/**";
path = config.sops.secrets."git/nordicsemi-config".path;
}) (bitbucket-uri-prefixes ++ (lib.flatten (lib.attrValues prefixes-per-org)));
})
];
home.packages = [
(pkgs.writeShellApplication {
name = "git-tcommit";
runtimeInputs = with pkgs; [ cfg.package coreutils ];
text = lib.fileContents ./scripts/git-tcommit.sh;
})
(pkgs.writeShellApplication {
name = "git-switch-interactive";
runtimeInputs = with pkgs; [ cfg.package fzf gnused coreutils ];
text = lib.fileContents ./scripts/git-switch-interactive.sh;
excludeShellChecks = [
"SC2001" # (style): See if you can use ${variable//search/replace} instead. (sed invocation)
];
})
];
2022-03-07 16:01:52 +01:00
}