summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/network-filesystems/drbd.nix
blob: 973ed80d82b91dfc7ebbcfe3e1dca8c42725f1a2 (plain)
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
# Support for DRBD, the Distributed Replicated Block Device.
{
  config,
  lib,
  pkgs,
  ...
}:
let
  cfg = config.services.drbd;
in

{

  ###### interface

  options = {

    services.drbd.enable = lib.mkOption {
      default = false;
      type = lib.types.bool;
      description = ''
        Whether to enable support for DRBD, the Distributed Replicated
        Block Device.
      '';
    };

    services.drbd.config = lib.mkOption {
      default = "";
      type = lib.types.lines;
      description = ''
        Contents of the {file}`drbd.conf` configuration file.
      '';
    };

  };

  ###### implementation

  config = lib.mkIf cfg.enable {

    environment.systemPackages = [ pkgs.drbd ];

    services.udev.packages = [ pkgs.drbd ];

    boot.kernelModules = [ "drbd" ];

    boot.extraModprobeConfig = ''
      options drbd usermode_helper=/run/current-system/sw/bin/drbdadm
    '';

    environment.etc."drbd.conf" = {
      source = pkgs.writeText "drbd.conf" cfg.config;
    };

    systemd.services.drbd = {
      after = [
        "systemd-udev.settle.service"
        "network.target"
      ];
      wants = [ "systemd-udev.settle.service" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        ExecStart = "${pkgs.drbd}/bin/drbdadm up all";
        ExecStop = "${pkgs.drbd}/bin/drbdadm down all";
      };
    };
  };
}