1
0
Fork 0
dotfiles/system/nixos/arion.nix

24 lines
366 B
Nix

{ pkgs, config, secret, ... }:
{
environment.systemPackages = [
pkgs.arion
];
virtualisation = {
docker.enable = false;
podman = {
enable = true;
dockerSocket.enable = true;
defaultNetwork.settings.dns_enabled = true;
};
oci-containers.backend = "podman";
arion = {
backend = "podman-socket";
};
};
}