From 6fd18847147d81be5208e21fe94fce3a5d52c73d Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Sun, 16 Jun 2024 10:12:28 +0200 Subject: [PATCH] fix: Disable autoUpgrade as it is not used and actually regresses the system constantly --- modules/auto-upgrade.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auto-upgrade.nix b/modules/auto-upgrade.nix index 399b5e2..3fc5ebd 100644 --- a/modules/auto-upgrade.nix +++ b/modules/auto-upgrade.nix @@ -1,6 +1,6 @@ { pkgs, ... }: { system.autoUpgrade = { - enable = true; + enable = false; flake = "git+https://git.newtype.fr/newtype/newtype-org-configurations"; flags = [ "--option" "accept-flake-config" "true" ]; };