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

16 lines
296 B
Nix

{ config, lib, pkgs, ... }: {
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
};
};
environment.systemPackages = with pkgs; [
# Nicely Make and Run Container Sets
podman-compose
# For Running Simulations Containerized
apptainer
];
}