flake/dev.nix

15 lines
211 B
Nix
Raw Normal View History

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