flake/parts/dev.nix

15 lines
218 B
Nix
Raw Normal View History

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