From 517c285c407c600c7fe579f84c2dfb1f250672c2 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 13 Jan 2024 19:12:22 -0500 Subject: [PATCH] hosts/data: only inherit certain settings --- hosts/data.cs.purdue.edu/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/data.cs.purdue.edu/default.nix b/hosts/data.cs.purdue.edu/default.nix index 8ff6558..6021476 100644 --- a/hosts/data.cs.purdue.edu/default.nix +++ b/hosts/data.cs.purdue.edu/default.nix @@ -35,6 +35,18 @@ homeDirectory = lib.mkForce "/homes/${config.home.username}"; }; - nix = { inherit (main.nix) settings; }; + nix.settings = { + inherit (main.nix.settings) + auto-optimise-store + experimental-features + fallback + flake-registry + keep-derivations + keep-outputs + min-free + sandbox + use-xdg-base-directories + ; + }; }; }