nix-config/devShells.nix

15 lines
261 B
Nix

{ inputs, ... }:
{
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
nil
nixfmt-rfc-style
inputs.deploy-rs.packages.${pkgs.system}.default
];
};
};
}