Add ghost containers (it went missing)

master
David Crompton 2023-08-01 10:34:27 -04:00
parent 052a588986
commit a2420a7138
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ 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
];
}