Add Containers
parent
a2420f7109
commit
1ce1526f2f
|
@ -3,5 +3,6 @@
|
|||
./packages/office.nix
|
||||
./packages/terminal.nix
|
||||
./packages/matlab.nix
|
||||
./packages/containers.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue