Files
policy-ui/flake.nix
Haim Kortovich 7e8025700b WIP
2026-03-05 11:36:23 -05:00

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
];
};
});
}