17 lines
398 B
Nix
Raw Permalink Normal View History

2025-01-15 18:19:03 +01:00
{lib, ...}: {
imports = [
./baserow.nix
./ghost.nix
./littlelink.nix
2025-03-14 17:32:08 +01:00
./matomo.nix
2025-02-23 19:07:14 +01:00
./n8n.nix
2025-03-15 14:23:47 +01:00
./restreamer.nix
2025-02-28 15:56:53 +01:00
./slash.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
'';
}