mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-01-12 18:38:23 +01:00
Compare commits
4 Commits
sops_add_v
...
792958edf4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
792958edf4 | ||
|
|
cc9ceb0255 | ||
|
|
6f25344fa6 | ||
|
|
ee52418527 |
@@ -91,6 +91,7 @@
|
|||||||
modules = [
|
modules = [
|
||||||
inputs.matrix-next.nixosModules.default
|
inputs.matrix-next.nixosModules.default
|
||||||
inputs.pvv-calendar-bot.nixosModules.default
|
inputs.pvv-calendar-bot.nixosModules.default
|
||||||
|
self.nixosModules.gickup
|
||||||
];
|
];
|
||||||
overlays = [
|
overlays = [
|
||||||
inputs.pvv-calendar-bot.overlays.x86_64-linux.default
|
inputs.pvv-calendar-bot.overlays.x86_64-linux.default
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
snakeoil-certs = ./modules/snakeoil-certs.nix;
|
snakeoil-certs = ./modules/snakeoil-certs.nix;
|
||||||
snappymail = ./modules/snappymail.nix;
|
snappymail = ./modules/snappymail.nix;
|
||||||
robots-txt = ./modules/robots-txt.nix;
|
robots-txt = ./modules/robots-txt.nix;
|
||||||
|
gickup = ./modules/gickup.nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
devShells = forAllSystems (system: {
|
devShells = forAllSystems (system: {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
./services/nginx
|
./services/nginx
|
||||||
|
|
||||||
./services/calendar-bot.nix
|
./services/calendar-bot.nix
|
||||||
|
./services/git-mirrors
|
||||||
./services/mysql.nix
|
./services/mysql.nix
|
||||||
./services/postgres.nix
|
./services/postgres.nix
|
||||||
|
|
||||||
|
|||||||
67
hosts/bicep/services/git-mirrors/default.nix
Normal file
67
hosts/bicep/services/git-mirrors/default.nix
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
sops.secrets."gickup/github-token" = {
|
||||||
|
owner = "gickup";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.gickup = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
destinationSettings = {
|
||||||
|
structured = true;
|
||||||
|
zip = false;
|
||||||
|
keep = 10;
|
||||||
|
bare = true;
|
||||||
|
lfs = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
instances = let
|
||||||
|
defaultGithubConfig = {
|
||||||
|
settings.token_file = sops.secrets."gickup/github-token".path;
|
||||||
|
};
|
||||||
|
defaultGitlabConfig = {
|
||||||
|
# settings.token_file = ...
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
"github:go-gitea/gitea" = defaultGithubConfig;
|
||||||
|
"github:unmojang/FjordLauncher" = defaultGithubConfig;
|
||||||
|
"github:unmojang/drasl" = defaultGithubConfig;
|
||||||
|
"github:NixOS/nixpkgs" = defaultGithubConfig;
|
||||||
|
"github:saltstack/salt" = defaultGithubConfig;
|
||||||
|
"github:heimdal/heimdal" = defaultGithubConfig;
|
||||||
|
"github:yushijinhun/authlib-injector" = defaultGithubConfig;
|
||||||
|
"github:Git-Mediawiki/Git-Mediawiki" = defaultGithubConfig;
|
||||||
|
|
||||||
|
# "gitlab:mx-puppet/discord/better-discord.js" = defaultGitlabConfig;
|
||||||
|
# "gitlab:mx-puppet/discord/matrix-discord-parser" = defaultGitlabConfig;
|
||||||
|
# "gitlab:mx-puppet/discord/discord-markdown" = defaultGitlabConfig;
|
||||||
|
# "gitlab:mx-puppet/discord/mx-puppet-discord" = defaultGitlabConfig;
|
||||||
|
# "gitlab:mx-puppet/mx-puppet-bridge" = defaultGitlabConfig;
|
||||||
|
|
||||||
|
"any:glibc" = {
|
||||||
|
settings.url = "https://sourceware.org/git/glibc.git";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# services.cgit = let
|
||||||
|
# domain = "mirrors.pvv.ntnu.no";
|
||||||
|
# in {
|
||||||
|
# ${domain} = {
|
||||||
|
# enable = true;
|
||||||
|
# group = "gickup";
|
||||||
|
# scanPath = "/var/lib/gickup";
|
||||||
|
# settings = {
|
||||||
|
# enable-commit-graph = true;
|
||||||
|
# enable-follow-links = true;
|
||||||
|
# enable-http-clone = true;
|
||||||
|
# enable-remote-branches = true;
|
||||||
|
# clone-url = "https://${domain}/$CGIT_REPO_URL";
|
||||||
|
# remove-suffix = true;
|
||||||
|
# root-title = "https://${domain}";
|
||||||
|
# root-desc = "PVV's repository mirroring service";
|
||||||
|
# snapshots = "all";
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
}
|
||||||
267
modules/gickup.nix
Normal file
267
modules/gickup.nix
Normal file
@@ -0,0 +1,267 @@
|
|||||||
|
{ config, pkgs, lib, utils, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.services.gickup;
|
||||||
|
format = pkgs.formats.yaml { };
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.gickup = {
|
||||||
|
enable = lib.mkEnableOption "gickup, a git repository mirroring service";
|
||||||
|
|
||||||
|
package = lib.mkPackageOption pkgs "gickup" { };
|
||||||
|
gitPackage = lib.mkPackageOption pkgs "git" { };
|
||||||
|
gitLfsPackage = lib.mkPackageOption pkgs "git-lfs" { };
|
||||||
|
|
||||||
|
destinationSettings = lib.mkOption {
|
||||||
|
description = ''
|
||||||
|
Settings for destination local, see gickup configuration file
|
||||||
|
|
||||||
|
Note that `path` will be set automatically to `/var/lib/gickup`
|
||||||
|
'';
|
||||||
|
type = lib.types.submodule {
|
||||||
|
freeformType = format.type;
|
||||||
|
};
|
||||||
|
default = { };
|
||||||
|
example = {
|
||||||
|
structured = true;
|
||||||
|
zip = false;
|
||||||
|
keep = 10;
|
||||||
|
bare = true;
|
||||||
|
lfs = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
instances = lib.mkOption {
|
||||||
|
type = lib.types.attrsOf (lib.types.submodule (submoduleInputs@{ name, ... }: let
|
||||||
|
submoduleName = name;
|
||||||
|
|
||||||
|
nameParts = rec {
|
||||||
|
repoType = builtins.head (lib.splitString ":" submoduleName);
|
||||||
|
|
||||||
|
owner = if repoType == "any"
|
||||||
|
then null
|
||||||
|
else lib.pipe submoduleName [
|
||||||
|
(lib.removePrefix "${repoType}:")
|
||||||
|
(lib.splitString "/")
|
||||||
|
builtins.head
|
||||||
|
lib.toLower
|
||||||
|
];
|
||||||
|
|
||||||
|
repo = if repoType == "any"
|
||||||
|
then null
|
||||||
|
else lib.pipe submoduleName [
|
||||||
|
(lib.removePrefix "${repoType}:")
|
||||||
|
(lib.splitString "/")
|
||||||
|
lib.last
|
||||||
|
lib.toLower
|
||||||
|
];
|
||||||
|
|
||||||
|
slug = if repoType == "any"
|
||||||
|
then builtins.replaceStrings [ ":" "/" ] [ "-" "-" ] submoduleName
|
||||||
|
else "${repoType}-${owner}-${repo}";
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
options = {
|
||||||
|
interval = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
default = "daily";
|
||||||
|
example = "weekly";
|
||||||
|
description = ''
|
||||||
|
Specification (in the format described by {manpage}`systemd.time(7)`) of the time
|
||||||
|
interval at which to run the service.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
type = lib.mkOption {
|
||||||
|
type = lib.types.enum [
|
||||||
|
"github"
|
||||||
|
"gitlab"
|
||||||
|
"gitea"
|
||||||
|
"gogs"
|
||||||
|
"bitbucket"
|
||||||
|
"onedev"
|
||||||
|
"sourcehut"
|
||||||
|
"any"
|
||||||
|
];
|
||||||
|
example = "github";
|
||||||
|
default = nameParts.repoType;
|
||||||
|
description = ''
|
||||||
|
The type of the repository to mirror.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
owner = lib.mkOption {
|
||||||
|
type = with lib.types; nullOr str;
|
||||||
|
example = "go-gitea";
|
||||||
|
default = nameParts.owner;
|
||||||
|
description = ''
|
||||||
|
The owner of the repository to mirror (if applicable)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
repo = lib.mkOption {
|
||||||
|
type = with lib.types; nullOr str;
|
||||||
|
example = "gitea";
|
||||||
|
default = nameParts.repo;
|
||||||
|
description = ''
|
||||||
|
The name of the repository to mirror (if applicable)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
slug = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
default = nameParts.slug;
|
||||||
|
example = "github-go-gitea-gitea";
|
||||||
|
description = ''
|
||||||
|
The slug of the repository to mirror.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = lib.mkOption {
|
||||||
|
description = "Instance specific settings, see gickup configuration file";
|
||||||
|
type = lib.types.submodule {
|
||||||
|
freeformType = format.type;
|
||||||
|
};
|
||||||
|
default = { };
|
||||||
|
example = {
|
||||||
|
username = "gickup";
|
||||||
|
password = "hunter2";
|
||||||
|
wiki = true;
|
||||||
|
issues = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
services.gickup.destinationSettings.path = "/var/lib/gickup";
|
||||||
|
|
||||||
|
systemd.slices."system-gickup" = {
|
||||||
|
description = "Gickup git repository mirroring service";
|
||||||
|
after = [ "network.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.targets.gickup = {
|
||||||
|
description = "Gickup git repository mirroring service";
|
||||||
|
wants = map ({ slug, ... }: "gickup@${slug}.service") (lib.attrValues cfg.instances);
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.timers = {
|
||||||
|
"gickup@" = {
|
||||||
|
description = "Gickup git repository mirroring service for %i";
|
||||||
|
|
||||||
|
timerConfig = {
|
||||||
|
OnCalendar = "daily";
|
||||||
|
RandomizedDelaySec = "1h";
|
||||||
|
Persistent = true;
|
||||||
|
AccuracySec = "1s";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
//
|
||||||
|
# Overrides for mirrors which are not "daily"
|
||||||
|
(lib.pipe cfg.instances [
|
||||||
|
builtins.attrValues
|
||||||
|
(builtins.filter (instance: instance.interval != "daily"))
|
||||||
|
(map ({ slug, interval, ... }: {
|
||||||
|
name = "gickup@${slug}";
|
||||||
|
value = {
|
||||||
|
overrideStrategy = "asDropin";
|
||||||
|
timerConfig.OnCalendar = interval;
|
||||||
|
};
|
||||||
|
}))
|
||||||
|
builtins.listToAttrs
|
||||||
|
]);
|
||||||
|
|
||||||
|
systemd.targets.timers.wants = map ({ slug, ... }: "gickup@${slug}.timer") (lib.attrValues cfg.instances);
|
||||||
|
|
||||||
|
systemd.services."gickup@" = let
|
||||||
|
configDir = lib.pipe cfg.instances [
|
||||||
|
(lib.mapAttrsToList (name: instance: {
|
||||||
|
name = "${instance.slug}.yml";
|
||||||
|
path = format.generate "gickup-configuration-${name}.yml" {
|
||||||
|
destination.local = [ cfg.destinationSettings ];
|
||||||
|
source.${instance.type} = [
|
||||||
|
(
|
||||||
|
(lib.optionalAttrs (instance.type != "any") {
|
||||||
|
user = instance.owner;
|
||||||
|
includeorgs = [ instance.owner ];
|
||||||
|
include = [ instance.repo ];
|
||||||
|
})
|
||||||
|
//
|
||||||
|
instance.settings
|
||||||
|
)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}))
|
||||||
|
(pkgs.linkFarm "gickup-configuration-files")
|
||||||
|
];
|
||||||
|
in {
|
||||||
|
description = "Gickup git repository mirroring service for %i";
|
||||||
|
after = [ "network.target" ];
|
||||||
|
|
||||||
|
path = [
|
||||||
|
cfg.gitPackage
|
||||||
|
cfg.gitLfsPackage
|
||||||
|
];
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
Slice = "system-gickup.slice";
|
||||||
|
ExecStart = "'${pkgs.gickup}/bin/gickup' '${configDir}/%i.yml' --debug";
|
||||||
|
|
||||||
|
User = "gickup";
|
||||||
|
Group = "gickup";
|
||||||
|
|
||||||
|
SyslogIdentifier = "gickup-%i";
|
||||||
|
StateDirectory = "gickup";
|
||||||
|
# WorkingDirectory = "gickup";
|
||||||
|
# RuntimeDirectory = "gickup";
|
||||||
|
# RuntimeDirectoryMode = "0700";
|
||||||
|
|
||||||
|
# Hardening options
|
||||||
|
AmbientCapabilities = [];
|
||||||
|
LockPersonality = true;
|
||||||
|
NoNewPrivileges = true;
|
||||||
|
PrivateDevices = true;
|
||||||
|
PrivateMounts = true;
|
||||||
|
PrivateTmp = true;
|
||||||
|
PrivateUsers = true;
|
||||||
|
ProcSubset = "pid";
|
||||||
|
ProtectClock = true;
|
||||||
|
ProtectControlGroups = true;
|
||||||
|
ProtectHome = true;
|
||||||
|
ProtectHostname = true;
|
||||||
|
ProtectKernelLogs = true;
|
||||||
|
ProtectKernelModules = true;
|
||||||
|
ProtectKernelTunables = true;
|
||||||
|
# ProtectProc = "invisible";
|
||||||
|
# ProtectSystem = "strict";
|
||||||
|
RemoveIPC = true;
|
||||||
|
RestrictAddressFamilies = [
|
||||||
|
"AF_INET"
|
||||||
|
"AF_INET6"
|
||||||
|
];
|
||||||
|
RestrictNamespaces = true;
|
||||||
|
RestrictRealtime = true;
|
||||||
|
RestrictSUIDSGID = true;
|
||||||
|
SystemCallArchitectures = "native";
|
||||||
|
# SystemCallFilter = [
|
||||||
|
# "@system-service"
|
||||||
|
# "~@resources"
|
||||||
|
# "~@privileged"
|
||||||
|
# ];
|
||||||
|
UMask = "0002";
|
||||||
|
CapabilityBoundingSet = [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.gickup = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = "gickup";
|
||||||
|
home = "/var/lib/gickup";
|
||||||
|
};
|
||||||
|
|
||||||
|
users.groups.gickup = { };
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -3,6 +3,8 @@ calendar-bot:
|
|||||||
mysql_password: ENC[AES256_GCM,data:Gqag8yOgPH3ntoT5TmaqJWv1j+si2qIyz5Ryfw5E2A==,iv:kQDcxnPfwJQcFovI4f87UDt18F8ah3z5xeY86KmdCyY=,tag:A1sCSNXJziAmtUWohqwJgg==,type:str]
|
mysql_password: ENC[AES256_GCM,data:Gqag8yOgPH3ntoT5TmaqJWv1j+si2qIyz5Ryfw5E2A==,iv:kQDcxnPfwJQcFovI4f87UDt18F8ah3z5xeY86KmdCyY=,tag:A1sCSNXJziAmtUWohqwJgg==,type:str]
|
||||||
mysql:
|
mysql:
|
||||||
password: ENC[AES256_GCM,data:KqEe0TVdeMIzPKsmFg9x0X9xWijnOk306ycyXTm2Tpqo/O0F,iv:Y+hlQ8n1ZIP9ncXBzd2kCSs/DWVTWhiEluFVwZFKRCA=,tag:xlaUk0Wftk62LpYE5pKNQw==,type:str]
|
password: ENC[AES256_GCM,data:KqEe0TVdeMIzPKsmFg9x0X9xWijnOk306ycyXTm2Tpqo/O0F,iv:Y+hlQ8n1ZIP9ncXBzd2kCSs/DWVTWhiEluFVwZFKRCA=,tag:xlaUk0Wftk62LpYE5pKNQw==,type:str]
|
||||||
|
gickup:
|
||||||
|
github-token: ENC[AES256_GCM,data:ICv6BP/kCrpx6qPCfdEeLK2NP/3iGmmv8hkHhHdwD1qyQb5g4NYBkm+OyRM4F75WUpg3j80x7I4k1vuSeVLzOldyIQ4uK00NQ58D8Ej/Wfm0ojMQM9g4Sr+6wyor,iv:TovZIU4Cs8nriYHXlCgnj3HV6c9F4A08xFOqrM3ls14=,tag:WwgM7z0ErREUvkafFK3AeQ==,type:str]
|
||||||
sops:
|
sops:
|
||||||
kms: []
|
kms: []
|
||||||
gcp_kms: []
|
gcp_kms: []
|
||||||
@@ -63,8 +65,8 @@ sops:
|
|||||||
cTh5bnJ3WW90aXRCSUp6NHFYeU1tZ0kK4afdtJwGNu6wLRI0fuu+mBVeqVeB0rgX
|
cTh5bnJ3WW90aXRCSUp6NHFYeU1tZ0kK4afdtJwGNu6wLRI0fuu+mBVeqVeB0rgX
|
||||||
0q5hwyzjiRnHnyjF38CmcGgydSfDRmF6P+WIMbCwXC6LwfRhAmBGPg==
|
0q5hwyzjiRnHnyjF38CmcGgydSfDRmF6P+WIMbCwXC6LwfRhAmBGPg==
|
||||||
-----END AGE ENCRYPTED FILE-----
|
-----END AGE ENCRYPTED FILE-----
|
||||||
lastmodified: "2024-08-15T21:18:33Z"
|
lastmodified: "2025-05-07T20:27:27Z"
|
||||||
mac: ENC[AES256_GCM,data:uR5HgeDAYqoqB9kk1V6p0T30+v6WpQJi4+qIeCDRnoUPnQKUVR10hvBhICck+E+Uh8p+tGhM6Uf3YrAJAV0ZCUiNJjtwDJQQLUDT53vdOAXN4xADCQqNuhgVwVMaruoTheEiwOswRuhFeEwy0gBj3Ze2pu47lueHYclmEzumLeQ=,iv:t0UyXN2YaR2m7M/pV2wTLJG5wVfqTIUs7wSQMmyeTVw=,tag:O7dIffzrDAXz3kGx5uazhw==,type:str]
|
mac: ENC[AES256_GCM,data:8K+epmSfXj8kne76KieVETzcinH/csyGRKIclGq0woKlSW/U6F8vhaRMQzw3Jvp/aCYYj0N5evmNsVwufgUmvBFovZ/aJ9wZXHRBrwBm9cqLxpb/inA5uB9adOQYXC6JF3RjqA/eKmXMLIuRck9WL65vB5XPny8iOZcgHJ/415w=,iv:21hG0/Ypy4EFWu4VjIgodQa7hFHyFuPSSSJtlIuLqJ8=,tag:I1d+p1V/ByJN+0pY76kOeQ==,type:str]
|
||||||
pgp:
|
pgp:
|
||||||
- created_at: "2024-08-04T00:03:40Z"
|
- created_at: "2024-08-04T00:03:40Z"
|
||||||
enc: |-
|
enc: |-
|
||||||
@@ -87,4 +89,4 @@ sops:
|
|||||||
-----END PGP MESSAGE-----
|
-----END PGP MESSAGE-----
|
||||||
fp: F7D37890228A907440E1FD4846B9228E814A2AAC
|
fp: F7D37890228A907440E1FD4846B9228E814A2AAC
|
||||||
unencrypted_suffix: _unencrypted
|
unencrypted_suffix: _unencrypted
|
||||||
version: 3.9.0
|
version: 3.9.4
|
||||||
|
|||||||
Reference in New Issue
Block a user