Add flake with Bun
This commit is contained in:
parent
7e21413e7b
commit
3772d67726
1
dev-server/.envrc
Normal file
1
dev-server/.envrc
Normal file
@ -0,0 +1 @@
|
|||||||
|
use flake
|
1
dev-server/.gitignore
vendored
Normal file
1
dev-server/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.direnv
|
17
dev-server/flake.nix
Normal file
17
dev-server/flake.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user