Files
nixos-config/hosts/m3-atlas/services/containers/default.nix
T

21 lines
493 B
Nix
Raw Normal View History

2025-01-15 18:19:03 +01:00
{lib, ...}: {
imports = [
2026-08-23 14:39:31 +02:00
# ./baserow.nix
2025-01-15 18:19:03 +01:00
./ghost.nix
2026-08-23 14:39:31 +02:00
# ./honcho.nix
2025-01-15 18:19:03 +01:00
./littlelink.nix
2026-08-23 14:39:31 +02:00
# ./matomo.nix
./netbird.nix
2025-04-16 14:06:02 +02:00
# ./n8n.nix
2025-03-15 14:23:47 +01:00
./restreamer.nix
2025-02-28 15:56:53 +01:00
./slash.nix
2025-05-08 09:44:58 +02:00
./slash-nemoti.nix
2026-02-28 10:06:42 +01:00
./authentik.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
2026-08-23 14:39:31 +02:00
/run/current-system/sw/bin/podman network create web --subnet=10.89.0.0/24 --gateway=10.89.0.1
2025-01-15 18:19:03 +01:00
fi
'';
}