feat: add pr-tracker service
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
ffb8b9f154
commit
dbc4e70900
6 changed files with 21 additions and 0 deletions
|
@ -48,6 +48,7 @@ in {
|
|||
vault.reverseProxy = "${nosIP}:8781";
|
||||
hauk.reverseProxy = "${nosIP}:3003";
|
||||
headscale.reverseProxy = "${clusterIP}:8085";
|
||||
pr-tracker.reverseProxy = "${serviviIP}:3000";
|
||||
|
||||
jellyfin = {
|
||||
subDomainName = "jelly";
|
||||
|
|
|
@ -19,6 +19,7 @@ in {
|
|||
./modules/binary-cache.nix
|
||||
./modules/minecraft.nix
|
||||
./modules/nfs.nix
|
||||
./modules/pr-tracker.nix
|
||||
|
||||
self.nixosModules.docker
|
||||
];
|
||||
|
|
14
devices/servivi/modules/pr-tracker.nix
Normal file
14
devices/servivi/modules/pr-tracker.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
config,
|
||||
pr-tracker,
|
||||
...
|
||||
}: {
|
||||
imports = [pr-tracker.nixosModules.default];
|
||||
|
||||
services.pr-tracker = {
|
||||
enable = true;
|
||||
|
||||
userAgent = "matt\'s pr-tracker";
|
||||
githubApiTokenFile = config.sops.secrets.pr-tracker.path;
|
||||
};
|
||||
}
|
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
BIN
flake.nix
BIN
flake.nix
Binary file not shown.
|
@ -83,6 +83,11 @@ let
|
|||
owner = "matt1432";
|
||||
repo = "Minix";
|
||||
};
|
||||
|
||||
pr-tracker = mkDep {
|
||||
owner = "matt1432";
|
||||
repo = "pr-tracker";
|
||||
};
|
||||
};
|
||||
|
||||
nosInputs = {
|
||||
|
|
Loading…
Reference in a new issue