initial commit

This commit is contained in:
Denis Lehmann 2021-03-14 22:34:09 +01:00
commit 3d011629f7
3 changed files with 295 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
jq
mpv
youtube-dl
];
}