From 3b250c0d1bccf89b8bd6ee5dae2d20e5c41b1cff Mon Sep 17 00:00:00 2001 From: kiana-S Date: Tue, 16 Jan 2024 22:14:48 -0500 Subject: [PATCH] Enable content addressing derivations --- config/config.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/config.nix b/config/config.nix index 89846c1..3fd0397 100644 --- a/config/config.nix +++ b/config/config.nix @@ -15,10 +15,11 @@ in nix.package = pkgs.nixFlakes; nix.settings.auto-optimise-store = true; nix.extraOptions = '' - experimental-features = nix-command flakes + experimental-features = nix-command flakes ca-derivations restrict-eval = false ''; nixpkgs.config.allowUnfree = true; + nixpkgs.config.contentAddressedByDefault = true; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = !isMobile;