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 <aliceghuston@gmail.com>
This commit is contained in:
Alice Huston 2024-01-08 19:11:33 -05:00 committed by GitHub
parent 93ce3a6de3
commit 962baa4e64

View File

@ -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";