aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--home/nipsy/common/core/default.nix2
-rw-r--r--home/root/common/core/default.nix2
-rw-r--r--hosts/common/core/nix.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/home/nipsy/common/core/default.nix b/home/nipsy/common/core/default.nix
index 8d62904..a78dbe8 100644
--- a/home/nipsy/common/core/default.nix
+++ b/home/nipsy/common/core/default.nix
@@ -24,7 +24,7 @@
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
- experimental-features = [ "nix-command" "flakes" "repl-flake" ];
+ experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
};
};
diff --git a/home/root/common/core/default.nix b/home/root/common/core/default.nix
index ecd63fa..e2ca7c5 100644
--- a/home/root/common/core/default.nix
+++ b/home/root/common/core/default.nix
@@ -24,7 +24,7 @@
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
- experimental-features = [ "nix-command" "flakes" "repl-flake" ];
+ experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
};
};
diff --git a/hosts/common/core/nix.nix b/hosts/common/core/nix.nix
index a0dc5b2..94be2f6 100644
--- a/hosts/common/core/nix.nix
+++ b/hosts/common/core/nix.nix
@@ -14,7 +14,7 @@
trusted-users = [ "root" "@wheel" ];
auto-optimise-store = lib.mkDefault true;
- experimental-features = [ "nix-command" "flakes" "repl-flake" ];
+ experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
#flake-registry = ""; # Disable global flake registry This is a hold-over setting from Misterio77. Not sure significance but likely to do with nix.registry entry below.
};