WS-KCNHUB/machines/kcnhub/services/containers.nix

16 lines
294 B
Nix

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