From e72e19b7e82e79aa0b7a10894906c82bced33fb8 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Fri, 21 Apr 2023 18:58:54 -0600 Subject: [PATCH] Fix auto upgrade --- common/auto-update.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/auto-update.nix b/common/auto-update.nix index f744796..6557bfd 100644 --- a/common/auto-update.nix +++ b/common/auto-update.nix @@ -9,7 +9,7 @@ in config = lib.mkIf cfg.enable { system.autoUpgrade = { flake = "git+https://git.neet.dev/zuckerberg/nix-config.git"; - flags = [ "--recreate-lock-file" ]; # ignore lock file, just pull the latest + flags = [ "--recreate-lock-file" "--no-write-lock-file" ]; # ignore lock file, just pull the latest }; }; }