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;
|
|
|
|
};
|
2024-04-24 09:42:07 -04:00
|
|
|
docker.rootless = {
|
|
|
|
enable = true;
|
|
|
|
setSocketVariable = true;
|
|
|
|
};
|
|
|
|
# For compatability, and for some reason this isn't able to be per
|
|
|
|
# container?
|
|
|
|
oci-containers.backend = "docker";
|
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
|
|
|
|
];
|
|
|
|
}
|