1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-20 20:21:07 +00:00
ncc/hosts/nine/github2forgejo/github2forgejo.nix
2024-05-29 11:41:07 +03:00

12 lines
276 B
Nix

{ config, lib, ... }: with lib;
systemConfiguration {
secrets.github2forgejoEnvironment = {
file = ./environment.age;
owner = "github2forgejo";
};
services.github2forgejo = enabled {
environmentFile = config.secrets.github2forgejoEnvironment.path;
};
}