1
0
Fork 0

git: move repo maintenance config to encrypted file

This commit is contained in:
Daniel Kempkens 2024-04-14 13:22:59 +02:00
parent ef47d491e4
commit dc20d8d81c
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
4 changed files with 72 additions and 1 deletions

View file

@ -8,6 +8,13 @@
path = "/etc/nix/netrc"; path = "/etc/nix/netrc";
mode = "444"; mode = "444";
}; };
git-maintenance = {
file = ./git/maintenance.age;
path = "/Users/daniel/.config/git/maintenance-config";
owner = "daniel";
group = "staff";
};
}; };
}; };
} }

Binary file not shown.

View file

@ -1,5 +1,9 @@
{ pkgs, ... }: { pkgs, config, lib, ... }:
let
inherit (lib) mkIf;
inherit (pkgs.stdenv.hostPlatform) isDarwin;
in
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
git-absorb git-absorb
@ -73,6 +77,13 @@
apply = { apply = {
whitespace = "fix"; whitespace = "fix";
}; };
maintenance = mkIf isDarwin {
strategy = "incremental";
repo = let home = config.home.homeDirectory; in [
"${home}/.config/nixpkgs"
];
};
}; };
ignores = [ ignores = [
@ -83,6 +94,11 @@
]; ];
includes = [ includes = [
# Maintenance
(mkIf isDarwin {
path = "${config.xdg.configHome}/git/maintenance-config";
})
# Private # Private
{ {
condition = "hasconfig:remote.*.url:forgejo@git.kempkens.io:*/**"; condition = "hasconfig:remote.*.url:forgejo@git.kempkens.io:*/**";
@ -157,4 +173,49 @@
}; };
home.sessionVariables.GIT_CEILING_DIRECTORIES = "/Users"; home.sessionVariables.GIT_CEILING_DIRECTORIES = "/Users";
launchd.agents = mkIf isDarwin (
let
gitExecPath = "${config.programs.git.package}/libexec/git-core";
git = "${gitExecPath}/git";
calendarInterval = schedule:
let
freq = {
"hourly" = [{ Minute = 0; }];
"daily" = [{
Hour = 0;
Minute = 0;
}];
"weekly" = [{
Weekday = 1;
Hour = 0;
Minute = 0;
}];
};
in
freq.${schedule};
launchdAgent = { schedule }: {
enable = true;
config = {
ProgramArguments = [
git
"--exec-path=${gitExecPath}"
"for-each-repo"
"--config=maintenance.repo"
"maintenance"
"run"
"--schedule=${schedule}"
];
StartCalendarInterval = calendarInterval schedule;
};
};
in
{
git-maintenance-hourly = launchdAgent { schedule = "hourly"; };
git-maintenance-daily = launchdAgent { schedule = "daily"; };
git-maintenance-weekly = launchdAgent { schedule = "weekly"; };
}
);
} }

View file

@ -108,4 +108,7 @@ in
"agenix/hosts/neon/forgejo-actions/token.age".publicKeys = neon; "agenix/hosts/neon/forgejo-actions/token.age".publicKeys = neon;
"agenix/hosts/neon/mosquitto/passwordWeewxProxy.age".publicKeys = neon; "agenix/hosts/neon/mosquitto/passwordWeewxProxy.age".publicKeys = neon;
# Styx
"agenix/hosts/Styx/git/maintenance.age".publicKeys = [ user-daniel ];
} }