nix-config/devShells.nix

14 lines
194 B
Nix

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