Add flake with Bun

This commit is contained in:
Rph :3 2025-03-27 17:25:19 +01:00
parent 7e21413e7b
commit 3772d67726
No known key found for this signature in database
3 changed files with 19 additions and 0 deletions

1
dev-server/.envrc Normal file
View File

@ -0,0 +1 @@
use flake

1
dev-server/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.direnv

17
dev-server/flake.nix Normal file
View File

@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShell = with pkgs; mkShell {
buildInputs = with pkgs; [ bun ];
};
}
);
}