feat: add initial flake.nix for MusicQueue project

This commit is contained in:
Jan Gleytenhoover 2024-09-06 07:17:05 +02:00
commit 1c4926e6b6
Signed by: jank
GPG Key ID: B267751B8AE29EFE

30
flake.nix Normal file

@ -0,0 +1,30 @@
{
description = "MusicQueue";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default =
pkgs.mkShell
{
buildInputs = [
pkgs.git
pkgs.ddev
pkgs.php82
pkgs.php82Packages.composer
pkgs.bun
];
shellHook = ''
'';
};
};
}