Files
nix-files/hosts/common/programs/expect.nix
2025-07-22 21:38:04 +00:00

8 lines
194 B
Nix

{ pkgs, ... }:
{
sane.programs.expect = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.expect "expect";
sandbox.enable = false; #< it's typically used to launch programs
};
}