25 lines
494 B
Nix
25 lines
494 B
Nix
{
|
|
description = "test";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in {
|
|
devShell =
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs;
|
|
[
|
|
nodejs
|
|
vue-language-server
|
|
];
|
|
};
|
|
});
|
|
}
|