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

14 lines
155 B
Nix
Raw Normal View History

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