14 lines
351 B
Nix
Raw Normal View History

2025-01-15 18:19:03 +01:00
{lib, ...}: {
imports = [
./baserow.nix
./ghost.nix
./littlelink.nix
2025-01-21 10:04:14 +01:00
./restreamer.nix
2025-01-15 18:19:03 +01:00
];
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
'';
}