flake/parts/dev.nix

10 lines
161 B
Nix
Raw Normal View History

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