Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/d29c1b82-a70e-4092-88c7-b521a1b3cac3 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com>
15 lines
279 B
Nix
Executable File
15 lines
279 B
Nix
Executable File
{ config, pkgs, lib, ... }:
|
|
|
|
lib.mkIf config.sovran_systemsOS.features.mempool {
|
|
|
|
services.mempool = {
|
|
enable = true;
|
|
frontend.enable = true;
|
|
};
|
|
|
|
services.mysql.package = lib.mkForce pkgs.mariadb;
|
|
|
|
nix-bitcoin.onionServices.mempool-frontend.enable = true;
|
|
|
|
}
|