mirror of
https://github.com/RGBCube/ncc
synced 2026-01-20 20:21:07 +00:00
12 lines
276 B
Nix
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;
|
|
};
|
|
}
|