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

9 lines
143 B
Nix
Raw Normal View History

2024-03-16 07:12:59 +00:00
{ pkgs }:
2025-01-29 04:48:19 +00:00
let app = pkgs.callPackage ./. { };
in pkgs.mkShell {
2024-03-16 07:12:59 +00:00
inputsFrom = [ app ];
2025-01-29 04:48:19 +00:00
packages = with pkgs; [ treefmt rust-analyzer ];
2024-03-16 07:12:59 +00:00
}