From 5111de5278a72e6f57a6cab7d8e68be0d16b55aa Mon Sep 17 00:00:00 2001 From: aaron Date: Wed, 31 Dec 2025 11:17:31 +0100 Subject: [PATCH] refactor(settings): remove redundant options --- modules/nixos/settings.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nixos/settings.nix b/modules/nixos/settings.nix index 075ce7c..88cc0b4 100644 --- a/modules/nixos/settings.nix +++ b/modules/nixos/settings.nix @@ -4,8 +4,8 @@ nix = { # nix settings settings = { - # enable flakes, nix-command and eval-cache - experimental-features = [ "nix-command" "flakes" "eval-cache" ]; + # enable flakes and nix-command + experimental-features = [ "nix-command" "flakes" ]; # auto-optimize my nix-store auto-optimise-store = true; # use all cores