From 7a45f85507a589f041fd8fd6952d03e282ca86e7 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Thu, 26 Sep 2024 10:03:41 -0400 Subject: [PATCH] podman --- common/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/common/default.nix b/common/default.nix index 90e1274..07843c9 100644 --- a/common/default.nix +++ b/common/default.nix @@ -13,8 +13,18 @@ tmux openssl git + podman-tui ]; security.sudo.wheelNeedsPassword = false; networking.firewall.enable = false; services.openssh.enable = true; + virtualisation.containers.enable = true; + virtualisation = { + podman = { + enable = true; + dockerCompat = true; + defaultNetwork.settings.dns_enabled = true; + }; + }; + }