aboutsummaryrefslogtreecommitdiff
path: root/nix/program.mod.nix
blob: ff201ebab072e2e0009e94e80d6532d6af7c36b6 (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
{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.programs.tickwatch;

in
{
  meta = {
    maintainers = with lib.maintainers; [ euxane ];
  };

  options = {
    programs.tickwatch = {
      enable = lib.mkOption {
        type = lib.types.bool;
        default = false;
        description = ''
          Whether to add tickwatch to the global environment
          and configure a setcap wrapper for it.
        '';
      };

      package = lib.mkPackageOption pkgs "tickwatch" { };
    };
  };

  config = lib.mkIf cfg.enable {
    environment.systemPackages = [ cfg.package ];

    security.wrappers.tickwatch = {
      owner = "root";
      group = "root";
      capabilities = "cap_net_raw+p";
      source = lib.getExe cfg.package;
    };
  };
}