nixpkgs/nixos/modules/programs/wavemon.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
632 B
Nix
Raw Normal View History

2018-09-07 17:52:54 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.wavemon;
in {
options = {
programs.wavemon = {
enable = lib.mkOption {
type = lib.types.bool;
2018-09-07 17:52:54 +00:00
default = false;
description = ''
Whether to add wavemon to the global environment and configure a
setcap wrapper for it.
'';
};
};
};
config = lib.mkIf cfg.enable {
2018-09-07 17:52:54 +00:00
environment.systemPackages = with pkgs; [ wavemon ];
security.wrappers.wavemon = {
owner = "root";
group = "root";
2018-09-07 17:52:54 +00:00
capabilities = "cap_net_admin+ep";
source = "${pkgs.wavemon}/bin/wavemon";
2018-09-07 17:52:54 +00:00
};
};
}