setup environment

This commit is contained in:
Khaïs COLIN 2024-09-17 12:28:01 +02:00
parent 8fd482ecc8
commit 1198c1d8e7
4 changed files with 84 additions and 0 deletions

21
flake.nix Normal file
View file

@ -0,0 +1,21 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.default = pkgs.mkShell {
buildInputs = [
pkgs.ffmpeg
];
};
}
);
}