diff --git a/flake.nix b/flake.nix index a559633..a67c5c3 100644 --- a/flake.nix +++ b/flake.nix @@ -78,19 +78,21 @@ program = "${self.packages.${system}.default}/bin/Gitea.Declarative"; }; }; - devShell = pkgs.mkShell { - buildInputs = with pkgs; [ - (with dotnetCorePackages; - combinePackages [ - dotnet-sdk_7 - dotnetPackages.Nuget - ]) - ]; - packages = [ - pkgs.alejandra - pkgs.nodePackages.markdown-link-check - pkgs.shellcheck - ]; + devShells = { + default = pkgs.mkShell { + buildInputs = with pkgs; [ + (with dotnetCorePackages; + combinePackages [ + dotnet-sdk_7 + dotnetPackages.Nuget + ]) + ]; + packages = [ + pkgs.alejandra + pkgs.nodePackages.markdown-link-check + pkgs.shellcheck + ]; + }; }; }); }