mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
cddf0244b3
Co-authored-by: oddlama <oddlama@oddlama.org> Co-authored-by: ash <ash@sorrel.sh>
40 lines
1,017 B
Nix
40 lines
1,017 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.gpu-screen-recorder;
|
|
package = cfg.package.override {
|
|
inherit (config.security) wrapperDir;
|
|
};
|
|
in {
|
|
options = {
|
|
programs.gpu-screen-recorder = {
|
|
package = lib.mkPackageOption pkgs "gpu-screen-recorder" {};
|
|
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to install gpu-screen-recorder and generate setcap
|
|
wrappers for promptless recording.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
security.wrappers."gsr-kms-server" = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_sys_admin+ep";
|
|
source = "${package}/bin/gsr-kms-server";
|
|
};
|
|
security.wrappers."gpu-screen-recorder" = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_sys_nice+ep";
|
|
source = "${package}/bin/gpu-screen-recorder";
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ timschumi ];
|
|
}
|