1 { pkgs, lib, config, ... }:
2 let podl = pkgs.writeShellScriptBin "podl" ''
3 PATH=${with pkgs; lib.makeBinPath [
4 coreutils utillinux findutils gnugrep gnused
5 curl aria2 youtube-dl xmlstarlet
7 ${builtins.readFile ./podl.sh}
10 home.packages = [ podl ];