nixos-config/templates/rust-app/shell.nix

9 lines
143 B
Nix

{ pkgs }:
let app = pkgs.callPackage ./. { };
in pkgs.mkShell {
inputsFrom = [ app ];
packages = with pkgs; [ treefmt rust-analyzer ];
}