mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-06 10:49:25 -05:00
12 lines
240 B
Nix
12 lines
240 B
Nix
{pkgs, ...}: {
|
|
virtualisation.containers.enable = true;
|
|
virtualisation = {
|
|
podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
dockerSocket.enable = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
};
|
|
}
|