From 0701e6b107ef601d129a687a830b9b9300a4650c Mon Sep 17 00:00:00 2001 From: Daniel Thoren Date: Mon, 8 Sep 2025 15:08:59 +0200 Subject: [PATCH] fix: nix management (now managed by Determinate Systems) :bug: --- nixos/hosts/macos.nix | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/nixos/hosts/macos.nix b/nixos/hosts/macos.nix index a200f22..0d1c7a6 100644 --- a/nixos/hosts/macos.nix +++ b/nixos/hosts/macos.nix @@ -3,18 +3,7 @@ { # Apple Silicon + nix-darwin basics nixpkgs.hostPlatform = "aarch64-darwin"; - nix.enable = true; - - nix = { - settings = { - experimental-features = [ "nix-command" "flakes" ]; - }; - gc = { - automatic = true; - interval = { Weekday = 0; Hour = 3; Minute = 0; }; - }; - optimise.automatic = true; # replaces auto-optimise-store - }; + nix.enable = false; # Determinate manages Nix nixpkgs.config.allowUnfree = true;