From f56cb4afa8bf1d0dff6d261520fd088c45f06a09 Mon Sep 17 00:00:00 2001 From: winston Date: Mon, 11 Mar 2024 20:18:55 +0100 Subject: [PATCH] fix: use patched nix 2.18 turns out this doesn't have the problem linked in the previous commit --- machines/common/shared/nix.nix | 2 +- machines/lib.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/common/shared/nix.nix b/machines/common/shared/nix.nix index bea18ee..9d2e72f 100644 --- a/machines/common/shared/nix.nix +++ b/machines/common/shared/nix.nix @@ -12,7 +12,7 @@ in { nixpkgs.config.allowUnfree = true; nix = { gc.automatic = true; - package = pkgs.nixVersions.nix_2_17; + package = pkgs.nixVersions.nix_2_18; settings = { auto-optimise-store = true; diff --git a/machines/lib.nix b/machines/lib.nix index 540b7e8..f1cee3d 100644 --- a/machines/lib.nix +++ b/machines/lib.nix @@ -12,7 +12,7 @@ config = { nixpkgs = { overlays = overlays; - config.permittedInsecurePackages = ["nix-2.17.1"]; + config.permittedInsecurePackages = []; }; home-manager = { backupFileExtension = "backup";