mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
28 lines
632 B
Nix
28 lines
632 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.wavemon;
|
|
in {
|
|
options = {
|
|
programs.wavemon = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to add wavemon to the global environment and configure a
|
|
setcap wrapper for it.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ wavemon ];
|
|
security.wrappers.wavemon = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_net_admin+ep";
|
|
source = "${pkgs.wavemon}/bin/wavemon";
|
|
};
|
|
};
|
|
}
|