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 + ]; +}