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.
This commit is contained in:
		
							parent
							
								
									644aff8eab
								
							
						
					
					
						commit
						c96586d63f
					
				@ -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
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										25
									
								
								nixos/modules/programs/noisetorch.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								nixos/modules/programs/noisetorch.nix
									
									
									
									
									
										Normal file
									
								
							@ -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";
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user