From d5703798a8e299f1ead3905821848da8f9b9bdd7 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Mon, 22 Nov 2021 00:06:12 +0100 Subject: [PATCH] Set the default devShell to null --- modules/devShell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/devShell.nix b/modules/devShell.nix index 27534db..9ae44e4 100644 --- a/modules/devShell.nix +++ b/modules/devShell.nix @@ -43,6 +43,7 @@ in options = { devShell = mkOption { type = types.nullOr types.package; + default = null; description = '' A derivation that nix develop bases its environment on. '';