nixos/devshells/default.nix

11 lines
100 B
Nix

{ pkgs }:
pkgs.mkShell {
name = "nix";
packages = with pkgs; [
nil
nixpkgs-fmt
];
}