Disable podman, fix topgrade config (#34)

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
Alice Huston 2024-01-09 11:11:00 -05:00 committed by GitHub
parent 307e6a48ab
commit fb3128b5ae
2 changed files with 7 additions and 6 deletions

View File

@ -27,10 +27,11 @@
storageDriver = "overlay2";
};
podman = {
enable = true;
recommendedDefaults = true;
};
# Disabling as topgrade apparently prefers podman over docker and now I cant update anything :(
# podman = {
# enable = true;
# recommendedDefaults = true;
# };
};
environment.systemPackages = with pkgs; [

View File

@ -61,9 +61,9 @@
topgrade = {
enable = true;
settings.config = {
settings = {
misc = {
disable = [ "system" "nix" ];
disable = [ "system" "nix" "shell" ];
};
};
};