nixfiles/hosts/hetzner-vm/profiles/gitlabStaticSites.nix
2023-09-18 03:56:58 +01:00

26 lines
651 B
Nix

{config, ...}: let
secrets = config.services.secrets.secrets;
in {
users.users.gitlab_artifacts_sync.uid = 2001;
users.groups.gitlab_artifacts_sync.gid = 2001;
services.gitlab_artifacts_sync = {
enable = true;
credentialsEnvironmentFile = "${secrets.gitlab_env.path}";
repos = [
{
repoName = "ChaotiCryptidz/music_library_website";
domain = "musiclibrary.owo.monster";
}
{
repoName = "ChaotiCryptidz/food";
domain = "food.owo.monster";
}
{
repoName = "ChaotiCryptidz/thisisanexampleofspeex";
domain = "thisisanexampleofspeex.uk";
}
];
};
}