forked from DGNum/infrastructure
13 lines
214 B
Nix
13 lines
214 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.arkheon.record = {
|
|
enable = true;
|
|
|
|
tokenFile = config.age.secrets."__arkheon-token_file".path;
|
|
|
|
url = "https://arkheon.dgnum.eu";
|
|
};
|
|
|
|
age-secrets.sources = [ ./. ];
|
|
}
|