mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
24 lines
515 B
Nix
24 lines
515 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.programs.noisetorch;
|
|
in
|
|
{
|
|
options.programs.noisetorch = {
|
|
enable = mkEnableOption (lib.mdDoc "noisetorch + setcap wrapper");
|
|
|
|
package = mkPackageOption pkgs "noisetorch" { };
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
security.wrappers.noisetorch = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_sys_resource=+ep";
|
|
source = "${cfg.package}/bin/noisetorch";
|
|
};
|
|
environment.systemPackages = [ cfg.package ];
|
|
};
|
|
}
|