flake/parts/dev.nix

10 lines
171 B
Nix
Raw Normal View History

2023-11-14 17:36:02 +01:00
{
perSystem = {pkgs, ...}: {
devShells.default = pkgs.mkShellNoCC {
2024-05-11 10:40:16 +02:00
packages = with pkgs; [just nil deploy-rs];
2023-11-14 17:36:02 +01:00
};
formatter = pkgs.alejandra;
};
}