aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-10-15 09:56:50 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-10-15 09:56:50 -0700
commit4cc69a4f39529dc21c6b542e36d20cd86de911ed (patch)
tree2a4eff086506f1c06c78f6f3111e0ba69089e33a
parent5e3bf4915f94bee5d64fc54c3910c229a0c5e72f (diff)
downloadnix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.tar
nix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.tar.gz
nix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.tar.bz2
nix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.tar.lz
nix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.tar.xz
nix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.tar.zst
nix-4cc69a4f39529dc21c6b542e36d20cd86de911ed.zip
Remove nonexistent feature
-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.
};