mirror of
https://github.com/RGBCube/ncc
synced 2025-09-13 01:27:56 +00:00
12 lines
277 B
Nix
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;
|
|
};
|
|
}
|