From ef0796dc4207240c5d9409500dcfa3bb5224d0f7 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 5 Jun 2023 16:00:21 -0400 Subject: [PATCH] nix: Add repl-flake to experimental-features This enables us to browse all the variables in a system configuration based on nix flakes with `nix repl .` --- common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.nix b/common.nix index a3fb9f9c..8dcdb0ec 100644 --- a/common.nix +++ b/common.nix @@ -16,7 +16,7 @@ nix = { package = pkgs.nixFlakes; settings = { - experimental-features = [ "nix-command" "flakes" ]; + experimental-features = [ "nix-command" "flakes" "repl-flake" ]; }; };