cadey-printerfacts/shell.nix
Xe e73b5e43bf create portable service image
Signed-off-by: Xe <me@christine.website>
2022-02-27 11:50:55 +00:00

14 lines
167 B
Nix

let
pkgs = import <nixpkgs> { };
in pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
cargo-watch
rls
rustfmt
];
RUST_LOG = "info";
}