From d37aaa26222cd0341f5549f82d2c0ce6e0ae3a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Mon, 11 Sep 2023 23:52:02 +0200 Subject: [PATCH] chore: remove nix settings from core/default.nix --- profiles/core/default.nix | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/profiles/core/default.nix b/profiles/core/default.nix index 140707a9..b26f1729 100644 --- a/profiles/core/default.nix +++ b/profiles/core/default.nix @@ -91,32 +91,6 @@ in { }; }; - nix = { - # use nix-dram, a patched nix command, see: https://github.com/dramforever/nix-dram - package = inputs.nix-dram.packages.${pkgs.system}.nix-dram; - - # Improve nix store disk usage - autoOptimiseStore = true; - gc.automatic = true; - optimise.automatic = true; - - # Prevents impurities in builds - useSandbox = true; - - # give root and @wheel special privileges with nix - trustedUsers = ["root" "@wheel"]; - - # Generally useful nix option defaults - extraOptions = '' - min-free = 536870912 - keep-outputs = true - keep-derivations = true - fallback = true - # used by nix-dram - default-flake = flake:nixpkgs - ''; - }; - # For rage encryption, all hosts need a ssh key pair services.openssh = { enable = true;