nixpkgs/nixos/modules/programs/wavemon.nix

29 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";
};
};
}