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

16 lines
294 B
Nix
Raw Normal View History

2023-07-28 14:04:39 -04:00
{ 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
];
}