Files
dotfiles/scripts/yt-block/app.nix
2024-07-16 18:11:43 +02:00

12 lines
289 B
Nix

{ pkgs
, ...
}: let
python = pkgs.python3.withPackages (ps: with ps; [pkgs.python311Pacakges.cryptography]);
python_script = pkgs.writeText (builtins.readFile ./main.py);
in pkgs.writeShellApplication {
name = "yt-block";
text = ''
${python}/bin/python ${python_script}
'';
}