diff options
Diffstat (limited to 'users/grfn/xanthous/server/shell.nix')
-rw-r--r-- | users/grfn/xanthous/server/shell.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/users/grfn/xanthous/server/shell.nix b/users/grfn/xanthous/server/shell.nix new file mode 100644 index 000000000000..a6747175f105 --- /dev/null +++ b/users/grfn/xanthous/server/shell.nix @@ -0,0 +1,11 @@ +let + depot = import ../../../.. {}; + pkgs = depot.third_party.nixpkgs; +in + +pkgs.mkShell { + buildInputs = with pkgs; [ + rustup + rust-analyzer + ]; +} |