From be65c407350e4a320015450ec10e5acfef787e26 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 31 Oct 2023 21:34:23 -0400 Subject: [PATCH] global/nix: sort toggle options --- modules/global/nix.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index 3d35126..900d4c6 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -12,12 +12,11 @@ with lib; experimental-features = [ "flakes" "nix-command" "impure-derivations" "no-url-literals" "repl-flake" ]; auto-optimise-store = true; - + fallback = true; + keep-derivations = true; + keep-outputs = true; sandbox = true; use-xdg-base-directories = true; - keep-outputs = true; - keep-derivations = true; - fallback = true; flake-registry = "${inputs.flake-registry}/flake-registry.json"; secret-key-files = mkIf config.modules.secrets.enable config.secrets.binary-cache-private-key;