14 lines
258 B
Nix
14 lines
258 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
extraPackages = [ pkgs.podman-compose ];
|
|
};
|
|
|
|
systemd = {
|
|
services.podman-auto-update.enable = true;
|
|
timers.podman-auto-update.enable = true;
|
|
};
|
|
}
|