From c96586d63f4bd66449e8c5cc4dc588e5d9d3f5d8 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 22 Feb 2021 14:02:35 -0300 Subject: [PATCH] nixos/noisetorch: init NoiseTorch needs setcap set to 'cap_sys_resource=+ep' to work correctly accordingly to the README.md: https://github.com/lawl/NoiseTorch#download--install So this PR adds it. --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/noisetorch.nix | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 nixos/modules/programs/noisetorch.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 83c18a38482..dea0ca13565 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -163,6 +163,7 @@ ./programs/neovim.nix ./programs/nm-applet.nix ./programs/npm.nix + ./programs/noisetorch.nix ./programs/oblogout.nix ./programs/partition-manager.nix ./programs/plotinus.nix diff --git a/nixos/modules/programs/noisetorch.nix b/nixos/modules/programs/noisetorch.nix new file mode 100644 index 00000000000..5f3b0c8f5d1 --- /dev/null +++ b/nixos/modules/programs/noisetorch.nix @@ -0,0 +1,25 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let cfg = config.programs.noisetorch; +in { + options.programs.noisetorch = { + enable = mkEnableOption "noisetorch + setcap wrapper"; + + package = mkOption { + type = types.package; + default = pkgs.noisetorch; + description = '' + The noisetorch package to use. + ''; + }; + }; + + config = mkIf cfg.enable { + security.wrappers.noisetorch = { + source = "${cfg.package}/bin/noisetorch"; + capabilities = "cap_sys_resource=+ep"; + }; + }; +}