Remove mpv flake (unnecessary)

This commit is contained in:
Tibo De Peuter 2023-06-24 13:59:13 +02:00
parent 5d8463699f
commit b3ca00d9f6

View file

@ -1,24 +0,0 @@
{
description = "MPV flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
mpv
yt-dlp
];
};
}
);
}