1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 01:27:56 +00:00
ncc/hosts/nine/github2forgejo/github2forgejo.nix
2025-02-23 21:05:40 +03:00

12 lines
277 B
Nix

{ config, lib, ... }: let
inherit (lib) enabled;
in {
secrets.github2forgejoEnvironment = {
file = ./environment.age;
owner = "github2forgejo";
};
services.github2forgejo = enabled {
environmentFile = config.secrets.github2forgejoEnvironment.path;
};
}