summaryrefslogtreecommitdiff
path: root/nixos/modules/sentinel-faillogs.nix
blob: 93ade14ef706c49981540ecbf40f48f8d31f5066 (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
{ config, lib, pkgs, ... }:

with lib;

{

  imports = [ ./sentinel.nix ];


  options = {
    services.sentinel.faillogs = {
        enable = mkOption {
          type = types.bool;
          default = true;
          description = ''
            Whether to enable the Turris Sentinel Fail logs collector.
            The services.sentinel.enable has to be enabled as well.
          '';
        };
      };
  };


  config = mkIf config.services.sentinel.enable && config.services.sentinel.faillogs.enable {
    environment.systemPackages = [ pkgs.sentinel-faillogs ];

    systemd.services.sentinel-faillogs = {
      description = "Turris Sentinel Fail Logs";
      wantedBy = [ "multi-user.target" ];
      path = [ pkgs.sentinel-faillogs ];
      serviceConfig.ExecStart = "${pkgs.sentinel-faillogs}/bin/sentinel-faillogs";
    };

  };

}