change docker to podman for arion compatibility
This commit is contained in:
parent
f57afcc50c
commit
e0093f134b
|
@ -1,10 +1,26 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
virtualisation = {
|
pkgs,
|
||||||
docker = {
|
inputs,
|
||||||
enable = true;
|
...
|
||||||
};
|
}: {
|
||||||
};
|
imports = [inputs.arion.nixosModules.arion];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = [
|
||||||
docker-compose
|
pkgs.arion
|
||||||
|
pkgs.docker-client
|
||||||
];
|
];
|
||||||
|
|
||||||
|
virtualisation = {
|
||||||
|
podman = {
|
||||||
|
enable = true;
|
||||||
|
dockerSocket.enable = true;
|
||||||
|
defaultNetwork.settings.dns_enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.persistence."/persist" = {
|
||||||
|
hideMounts = true;
|
||||||
|
directories = [
|
||||||
|
"/var/lib/containers"
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue