fix(treewide/nix): disable ca-derivations

This commit is contained in:
Gabriel Fontes
2025-01-25 16:19:55 -03:00
parent f54fa408ee
commit f75af4147a
4 changed files with 1 additions and 4 deletions
-1
View File
@@ -20,7 +20,6 @@
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
warn-dirty = false;
};
-1
View File
@@ -14,7 +14,6 @@ in {
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
warn-dirty = false;
flake-registry = ""; # Disable global flake registry
-1
View File
@@ -17,7 +17,6 @@ in {
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
warn-dirty = false;
system-features = [
+1 -1
View File
@@ -1,6 +1,6 @@
{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [
nix
home-manager