16 lines
511 B
Nix
16 lines
511 B
Nix
{lib, ...}: {
|
|
imports = [
|
|
#./baserow.nix
|
|
# ./kestra.nix
|
|
./stirling-pdf.nix
|
|
];
|
|
system.activationScripts.createPodmanNetworkWeb = lib.mkAfter ''
|
|
if ! /run/current-system/sw/bin/podman network exists web; then
|
|
/run/current-system/sw/bin/podman network create web --subnet=10.89.0.0/24 --internal
|
|
fi
|
|
if ! /run/current-system/sw/bin/podman network exists web-dev; then
|
|
/run/current-system/sw/bin/podman network create web-dev --subnet=10.89.1.0/24 --internal
|
|
fi
|
|
'';
|
|
}
|