19 lines
467 B
Nix
19 lines
467 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = import nixpkgs { inherit system; };
|
|
in {
|
|
# For local development...
|
|
devShell = pkgs.mkShell { buildInputs = with pkgs; [ bun ]; };
|
|
|
|
# ... and remote deployment.
|
|
# packages = {};
|
|
|
|
});
|
|
}
|