33 lines
574 B
Nix
33 lines
574 B
Nix
{
|
|
description = "evoke";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
};
|
|
|
|
outputs = inputs@{ self, ... }:
|
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
imports = [
|
|
inputs.flake-parts.flakeModules.easyOverlay
|
|
];
|
|
|
|
systems = [ "x86_64-linux" ];
|
|
|
|
perSystem = {
|
|
system,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
nodePackages.serve
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|