From 962baa4e6461ab9b3987e2ec14268f2c0ffa5528 Mon Sep 17 00:00:00 2001 From: Alice Huston Date: Mon, 8 Jan 2024 19:11:33 -0500 Subject: [PATCH] Disable system,nix updates from Topgrade (#29) Topgrade is upgrading from local instead of remote, and throws an error when it tries to upgrade nix. Disabling these checks. Signed-off-by: ahuston-0 --- users/alice/home.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/users/alice/home.nix b/users/alice/home.nix index 007e707..6831ffd 100644 --- a/users/alice/home.nix +++ b/users/alice/home.nix @@ -23,9 +23,8 @@ # '') ncdu - + # Rust packages - topgrade trunk wasm-pack cargo-watch @@ -59,6 +58,13 @@ enable = true; enableZshIntegration = true; }; + + topgrade = { + enable = true; + settings.config = { + disable = [ "system" "nix" ]; + }; + }; }; home.stateVersion = "23.11";