From ab1d2306d90895c12db6ea344c950f2a0cabb9cf Mon Sep 17 00:00:00 2001 From: xenia Date: Sun, 3 Sep 2023 13:50:48 +0200 Subject: [PATCH] devshell -> devshells --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 119beba..0252c79 100644 --- a/flake.nix +++ b/flake.nix @@ -59,7 +59,9 @@ henttp = henttp; default = henttp; }; - devShell = pkgs.mkShell { packages = buildInputs; shellHook = common; }; + devShells = { + default = pkgs.mkShell { packages = buildInputs; shellHook = common; }; + }; checks = { default = check-all; };