From a2420a7138547fea5593e9451f89c77865c34727 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 1 Aug 2023 10:34:27 -0400 Subject: [PATCH] Add ghost containers (it went missing) --- machines/kcnhub/packages/containers.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 machines/kcnhub/packages/containers.nix diff --git a/machines/kcnhub/packages/containers.nix b/machines/kcnhub/packages/containers.nix new file mode 100644 index 0000000..6b868c5 --- /dev/null +++ b/machines/kcnhub/packages/containers.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, ... }: { + virtualization = { + podman = { + enable = true; + }; + dockerCompat = true; + }; + + environment.systemPackages = with pkgs; [ + # Nicely Make and Run Container Sets + podman-compose + # For Running Simulations Containerized + apptainer + ]; +}