nix-config/devShells.nix
2025-10-17 11:01:11 -03:00

15 lines
214 B
Nix

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