about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/services/networking/jormungandr.nix
blob: 85e804d6cf25ed07642207a757be9aa9b0fc040b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{ config, lib, pkgs, ... }:

let
  cfg = config.services.jormungandr;

  inherit (lib) mkEnableOption mkIf mkOption;
  inherit (lib) optionalString types;

  dataDir = "/var/lib/jormungandr";

  # Default settings so far, as the service matures we will
  # move these out as separate settings
  configSettings = {
    storage = dataDir;
    p2p = {
      public_address = "/ip4/127.0.0.1/tcp/8299";
      messages = "high";
      blocks = "high";
    };
    rest = {
      listen = "127.0.0.1:8607";
    };
  };

  configFile = if cfg.configFile == null then
    pkgs.writeText "jormungandr.yaml" (builtins.toJSON configSettings)
  else cfg.configFile;

in {

  options = {

    services.jormungandr = {
      enable = mkEnableOption "jormungandr service";

      configFile = mkOption {
       type = types.nullOr types.path;
       default = null;
       example = "/var/lib/jormungandr/node.yaml";
       description = ''
         The path of the jormungandr blockchain configuration file in YAML format.
         If no file is specified, a file is generated using the other options.
       '';
     };

      secretFile = mkOption {
       type = types.nullOr types.path;
       default = null;
       example = "/etc/secret/jormungandr.yaml";
       description = ''
         The path of the jormungandr blockchain secret node configuration file in
         YAML format. Do not store this in nix store!
       '';
     };

      genesisBlockHash = mkOption {
        type = types.nullOr types.str;
        default = null;
        example = "d70495af81ae8600aca3e642b2427327cb6001ec4d7a0037e96a00dabed163f9";
        description = ''
          Set the genesis block hash (the hash of the block0) so we can retrieve
          the genesis block (and the blockchain configuration) from the existing
          storage or from the network.
        '';
      };

      genesisBlockFile = mkOption {
        type = types.nullOr types.path;
        default = null;
        example = "/var/lib/jormungandr/block-0.bin";
        description = ''
          The path of the genesis block file if we are hosting it locally.
        '';
      };

    };
  };

  config = mkIf cfg.enable {

    systemd.services.jormungandr = {
      description = "jormungandr server";
      wantedBy = [ "multi-user.target" ];
      after = [ "network-online.target" ];
      environment = {
        RUST_BACKTRACE = "full";
      };
      serviceConfig = {
        DynamicUser = true;
        StateDirectory = baseNameOf dataDir;
        ExecStart = ''
          ${pkgs.jormungandr}/bin/jormungandr --config ${configFile} \
            ${optionalString (cfg.secretFile != null) " --secret ${cfg.secretFile}"} \
            ${optionalString (cfg.genesisBlockHash != null) " --genesis-block-hash ${cfg.genesisBlockHash}"} \
            ${optionalString (cfg.genesisBlockFile != null) " --genesis-block ${cfg.genesisBlockFile}"}
        '';
      };
    };
  };
}