From 0c91eec61f72864ecc6bece7df6920b732985f27 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Sat, 15 Feb 2025 13:01:20 -0600 Subject: [PATCH] Add podman to Exodus --- hosts/exodus/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/hosts/exodus/default.nix b/hosts/exodus/default.nix index 3d5458d..7d31829 100644 --- a/hosts/exodus/default.nix +++ b/hosts/exodus/default.nix @@ -13,10 +13,6 @@ "aarch64-linux" ]; }; - - nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; - - networking.hostName = "exodus"; greg = { home = true; gnome.enable = true; @@ -27,4 +23,13 @@ system = "intel"; }; }; + + nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; + + networking.hostName = "exodus"; + + virtualisation = { + podman.enable = true; + oci-containers.backend = "podman"; + }; }