diff --git a/flake.nix b/flake.nix index be1350a..fa11cb8 100644 --- a/flake.nix +++ b/flake.nix @@ -61,15 +61,17 @@ }; }; - devShell = pkgs.mkShell { - name = "blog"; + devShells = { + default = pkgs.mkShell { + name = "blog"; - buildInputs = with pkgs; [ - gnumake - hugo - ]; + buildInputs = with pkgs; [ + gnumake + hugo + ]; - inherit (self.checks.${system}.pre-commit) shellHook; + inherit (self.checks.${system}.pre-commit) shellHook; + }; }; } );