nix-config/hosts/common/virtualisation.nix

14 lines
259 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
autoPrune.enable = true;
};
systemd = {
services.podman-auto-update.enable = true;
timers.podman-auto-update.enable = true;
};
}