grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / network-filesystems / drbd.nix
blobb971fadebf71ec0717fa52d8f78ccc23706fb9f8
1 # Support for DRBD, the Distributed Replicated Block Device.
3 { config, lib, pkgs, ... }:
5 with lib;
7 let cfg = config.services.drbd; in
11   ###### interface
13   options = {
15     services.drbd.enable = mkOption {
16       default = false;
17       type = types.bool;
18       description = ''
19         Whether to enable support for DRBD, the Distributed Replicated
20         Block Device.
21       '';
22     };
24     services.drbd.config = mkOption {
25       default = "";
26       type = types.lines;
27       description = ''
28         Contents of the {file}`drbd.conf` configuration file.
29       '';
30     };
32   };
35   ###### implementation
37   config = mkIf cfg.enable {
39     environment.systemPackages = [ pkgs.drbd ];
41     services.udev.packages = [ pkgs.drbd ];
43     boot.kernelModules = [ "drbd" ];
45     boot.extraModprobeConfig =
46       ''
47         options drbd usermode_helper=/run/current-system/sw/bin/drbdadm
48       '';
50     environment.etc."drbd.conf" =
51       { source = pkgs.writeText "drbd.conf" cfg.config; };
53     systemd.services.drbd = {
54       after = [ "systemd-udev.settle.service" "network.target" ];
55       wants = [ "systemd-udev.settle.service" ];
56       wantedBy = [ "multi-user.target" ];
57       serviceConfig = {
58         ExecStart = "${pkgs.drbd}/bin/drbdadm up all";
59         ExecStop = "${pkgs.drbd}/bin/drbdadm down all";
60       };
61     };
62   };