Add Containers

master
David Crompton 2023-07-28 14:04:39 -04:00
parent a2420f7109
commit 1ce1526f2f
2 changed files with 16 additions and 0 deletions

View File

@ -3,5 +3,6 @@
./packages/office.nix ./packages/office.nix
./packages/terminal.nix ./packages/terminal.nix
./packages/matlab.nix ./packages/matlab.nix
./packages/containers.nix
]; ];
} }

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
];
}