nixos-config/home-manager/modules/git/default.nix

175 lines
4.4 KiB
Nix
Raw Normal View History

{ pkgs
, config
, lib
, ...
2022-03-01 22:19:03 +01:00
}:
with lib; let
cfg = config.eboskma.programs.git;
in
{
2021-11-21 19:07:12 +01:00
options.eboskma.programs.git = {
enable = mkEnableOption "enable git";
2023-05-21 17:10:54 +02:00
package = mkOption {
description = "The git package to use";
type = types.package;
default = pkgs.gitFull;
};
2021-11-21 19:07:12 +01:00
name = mkOption {
description = "your name";
type = types.nonEmptyStr;
};
email = mkOption {
description = "your e-mail address";
type = types.nonEmptyStr;
};
signingKey = mkOption {
description = "your signing key";
2021-11-21 19:07:12 +01:00
type = types.nullOr types.str;
default = null;
};
signingKeyFormat = mkOption {
description = "the type of signing key";
type = types.enum [ "openpgp" "x509" "ssh" ];
default = "openpgp";
};
2021-11-21 19:07:12 +01:00
};
2022-05-03 18:17:38 +02:00
config = mkIf cfg.enable {
2021-11-21 19:07:12 +01:00
programs.git = {
enable = true;
2023-05-21 17:10:54 +02:00
package = cfg.package;
2021-11-21 19:07:12 +01:00
userName = cfg.name;
userEmail = cfg.email;
signing = mkIf (cfg.signingKey != null) {
key = cfg.signingKey;
signByDefault = true;
};
2022-08-24 08:31:43 +02:00
lfs.enable = true;
2021-11-21 19:07:12 +01:00
delta = {
2022-05-19 22:05:59 +02:00
enable = false;
2021-11-21 19:07:12 +01:00
options = {
2022-03-22 10:59:19 +01:00
side-by-side = false;
2021-11-21 19:07:12 +01:00
};
};
aliases = {
ls = "ls-files";
ignored = "ls-files -o -i --exclude-standard";
st = "status -s -b";
branches = "branch -a";
tags = "tag";
stashes = "stash list";
nevermind = "!git reset --hard HEAD && git clean -d -f";
graph = "log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset %<(75,trunc)%s (%cN, %cr) %Cred%d' --date-order";
precommit = "diff --cached --diff-algorithm=minimal -w";
track = "branch -u";
stat = "status -s";
up = "pull --autostash --rebase";
cm = "commit -m";
changelog = "log --oneline --no-merges";
source = "remote get-url origin";
};
extraConfig = {
2023-07-04 20:25:31 +02:00
# credential.helper = "${config.programs.git.package.override {withLibsecret = true;}}/bin/git-credential-libsecret";
credential = {
helper = "${pkgs.git-credential-manager}/bin/git-credential-manager";
credentialStore = "secretservice";
"https://dev.azure.com" = {
useHttpPath = true;
};
"https://git.datarift.nl" = {
provider = "generic";
oauthClientId = "3ae2eee7-1c52-4950-846e-17de716cfe77";
oauthClientSecret = "gto_tgalquoafnphcly4meztaxnfb3p2sq2aajksp7a2d4iu66c3ro2a";
oauthRedirectUri = "http://127.0.0.1:42069/";
oauthAuthorizeEndpoint = "/login/oauth/authorize";
oauthTokenEndpoint = "/login/oauth/access_token";
oauthScopes = "read:user repo";
};
};
2021-11-21 19:07:12 +01:00
init = {
defaultBranch = "main";
};
core = {
editor = "${config.eboskma.programs.emacs.package}/bin/emacsclient";
2022-05-19 22:05:59 +02:00
pager = "${pkgs.bat}/bin/bat";
2021-11-21 19:07:12 +01:00
};
merge = {
ff = "only";
conflictstyle = "diff3";
tool = "${pkgs.meld}/bin/meld";
};
pull = {
ff = "only";
};
2022-05-19 21:42:17 +02:00
push = {
default = "current";
};
2021-11-21 19:07:12 +01:00
rebase = {
autoStash = true;
};
color = {
ui = "auto";
status = {
added = "yellow";
changed = "green";
untracked = "cyan";
};
branch = {
current = "yellow reverse";
local = "yellow";
remote = "green";
};
diff = {
meta = "yellow bold";
frag = "magenta bold";
old = "red bold";
new = "green bold";
};
};
2022-01-24 11:15:17 +01:00
grep = {
lineNumber = true;
column = true;
patternType = "extended";
};
2022-09-06 13:26:09 +02:00
gpg = {
format = cfg.signingKeyFormat;
ssh.allowedSignersFile = "~/.config/git/allowed_signers";
};
2022-09-06 13:26:09 +02:00
url = {
"ssh://git@repohost.bedum.horus.nu/" = {
insteadOf = "rh:";
pushInsteadOf = "rh:";
2022-09-06 13:27:55 +02:00
};
2022-09-06 13:26:09 +02:00
};
2021-11-21 19:07:12 +01:00
};
};
programs.gh = {
enable = true;
settings = {
git_protocol = "ssh";
2021-12-06 09:58:39 +01:00
editor = "nvim";
prompt = "enabled";
pager = "bat";
http_unix_socket = "";
browser = "";
2021-11-21 19:07:12 +01:00
};
};
2023-07-04 20:25:31 +02:00
home.packages = [ pkgs.git-credential-manager ];
2021-11-21 19:07:12 +01:00
};
}