summary refs log tree commit diff
path: root/nixos/modules/services/networking/magic-wormhole-mailbox-server.nix
blob: 09d357cd2b6e4b38e3c0a1f781979b2f32969901 (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
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.magic-wormhole-mailbox-server;
  dataDir = "/var/lib/magic-wormhole-mailbox-server;";
  python = pkgs.python3.withPackages (py: [ py.magic-wormhole-mailbox-server py.twisted ]);
in
{
  options.services.magic-wormhole-mailbox-server = {
    enable = mkEnableOption "Enable Magic Wormhole Mailbox Server";
  };

  config = mkIf cfg.enable {
    systemd.services.magic-wormhole-mailbox-server = {
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        DynamicUser = true;
        ExecStart = "${python}/bin/twistd --nodaemon wormhole-mailbox";
        WorkingDirectory = dataDir;
        StateDirectory = baseNameOf dataDir;
      };
    };

  };
}