diff options
Diffstat (limited to 'users/aspen/xanthous/server/shell.nix')
-rw-r--r-- | users/aspen/xanthous/server/shell.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/users/aspen/xanthous/server/shell.nix b/users/aspen/xanthous/server/shell.nix new file mode 100644 index 000000000000..e01c0316a6b2 --- /dev/null +++ b/users/aspen/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 + ]; +} |