chore: reconfig podman

This commit is contained in:
Thiago Sposito 2025-10-17 17:21:29 -03:00
parent e9a77fccb7
commit 634d7eb2e8
Signed by: thiago
GPG key ID: 3065EA73A976D430
3 changed files with 17 additions and 12 deletions

View file

@ -46,6 +46,7 @@
pcsclite
pcsctools
pkcs11helper
podman-compose
rclone
sops
wget

View file

@ -38,18 +38,22 @@
# openssh.settings.X11Forwarding = true;
};
virtualisation.docker = {
enable = true;
logDriver = "journald";
package = pkgs.docker_25;
storageDriver = "btrfs";
daemon.settings = {
hosts = [ "unix:///var/run/docker.sock" ];
features.cdi = true;
userland-proxy = false;
experimental = true;
metrics-addr = "0.0.0.0:9323";
virtualisation ={
docker = {
enable = true;
logDriver = "journald";
package = pkgs.docker_25;
storageDriver = "btrfs";
daemon.settings = {
hosts = [ "unix:///var/run/docker.sock" ];
features.cdi = true;
userland-proxy = false;
experimental = true;
metrics-addr = "0.0.0.0:9323";
};
};
podman.enable = true;
};
virtualisation.waydroid.enable = true;