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

14 lines
155 B
Nix

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