diff --git a/devshell/flake.nix b/devshell/flake.nix index 3c819ad..9242191 100644 --- a/devshell/flake.nix +++ b/devshell/flake.nix @@ -6,7 +6,7 @@ }; outputs = { self, nixpkgs, utils, devshell }: utils.lib.eachDefaultSystem (system: { - devShell = let + devShells.default = let pkgs = import nixpkgs { inherit system; diff --git a/go/flake.nix b/go/flake.nix index 1649d80..95c76d5 100644 --- a/go/flake.nix +++ b/go/flake.nix @@ -28,7 +28,7 @@ apps.default = utils.lib.mkApp { drv = packages.default; }; - devShell = + devShells.default = pkgs.devshell.mkShell { packages = with pkgs; [ go gopls ]; }; }); } diff --git a/rust/flake.nix b/rust/flake.nix index 02e6059..4d10283 100644 --- a/rust/flake.nix +++ b/rust/flake.nix @@ -30,7 +30,7 @@ apps.default = utils.lib.mkApp { drv = packages.default; }; # Provide a dev env with rust and rls - devShell = let + devShells.default = let pkgs = import nixpkgs { inherit system; overlays = [ devshell.overlay ];