chore: routine maintenance

This commit is contained in:
danny 2025-11-23 16:24:38 +08:00
parent c45ba82b90
commit c7743490a7
75 changed files with 1200 additions and 634 deletions

View file

@ -1,11 +1,25 @@
{
pkgs,
...
}:
{
virtualisation = {
docker.enable = true;
docker.daemon.settings = {
containers = {
enable = true;
containersConf.settings.compose_warning_logs = false;
};
oci-containers.backend = "podman";
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
spiceUSBRedirection.enable = true;
};
environment.systemPackages = with pkgs; [
dive # look into docker image layers
podman-tui
podman-compose
];
}