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

16 lines
296 B
Nix
Raw Normal View History

2023-08-01 10:34:27 -04:00
{ config, lib, pkgs, ... }: {
2023-08-01 10:36:10 -04:00
virtualisation = {
2023-08-01 10:34:27 -04:00
podman = {
enable = true;
2023-08-01 10:36:36 -04:00
dockerCompat = true;
2023-08-01 10:34:27 -04:00
};
};
environment.systemPackages = with pkgs; [
# Nicely Make and Run Container Sets
podman-compose
# For Running Simulations Containerized
apptainer
];
}