dialogue-engine/flake.nix
2024-01-07 11:15:46 -08:00

15 lines
278 B
Nix

{
description = "";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [ nim nimlsp ];
};
};
}