forked from DGNum/infrastructure
14 lines
214 B
Nix
14 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 = [ ./. ];
|
||
|
}
|