chore: move git to hjem-rum
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
nydragon 2025-03-21 20:38:53 +01:00
parent f756c287a9
commit c6e9553f89
No known key found for this signature in database
6 changed files with 46 additions and 39 deletions

6
flake.lock generated
View file

@ -204,11 +204,11 @@
]
},
"locked": {
"lastModified": 1742231203,
"narHash": "sha256-pnYUjLfx61IKmg9+So8BdSkZCjb69ynpLlKqy7ba9s0=",
"lastModified": 1742584474,
"narHash": "sha256-cUw2nyUn+2Ii/70D8sJXnAVkRxyrvH2DwfVHdphzx1Y=",
"owner": "nydragon",
"repo": "hjem-rum",
"rev": "7cd095c4064072c603bc3b02eaa33d11735c1cf4",
"rev": "f321c4709fe9dea794cb886d4a3cb689d9b6546a",
"type": "github"
},
"original": {

View file

@ -2,7 +2,6 @@
imports = [
./neovim
./ssh
./git
./fish
./btop.nix
./beets.nix

View file

@ -1,34 +0,0 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
userName = "nydragon";
userEmail = "contact@ccnlc.eu";
extraConfig = {
gpg.format = "ssh";
push = {
autoSetupRemote = true;
};
pull = {
rebase = true;
};
core = {
editor = "${pkgs.neovim}/bin/nvim";
};
init = {
defaultBranch = "main";
};
merge = {
conflictstyle = "diff3";
};
diff = {
colorMoved = "default";
};
};
signing = {
signByDefault = true;
key = "key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw";
};
delta.enable = true;
};
}

View file

@ -41,7 +41,6 @@ in
loupe
pwvucontrol
thunderbird
keepassxc
protonmail-bridge-gui
signal-desktop
tagger

View file

@ -3,5 +3,6 @@
./foot.nix
./fuzzel.nix
./keepassxc.nix
./git.nix
];
}

42
users/ny/programs/git.nix Normal file
View file

@ -0,0 +1,42 @@
{ pkgs, libmy, ... }:
let
inherit (libmy) getExe;
in
{
rum.programs.git = {
enable = true;
settings = {
user = {
email = "contact@ccnlc.eu";
name = "nydragon";
signingKey = "key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw";
};
gpg.format = "ssh";
push = {
autoSetupRemote = true;
};
pull = {
rebase = true;
};
core = {
editor = "${getExe pkgs.neovim}";
pager = "${getExe pkgs.delta}";
};
interactive = {
diffFilter = "${getExe pkgs.delta} --color-only";
};
init = {
defaultBranch = "main";
};
merge = {
conflictstyle = "diff3";
};
diff = {
colorMoved = "default";
};
tag.gpgSign = true;
commit.gpgSign = true;
};
destination = ".config/git/config";
};
}