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

21 lines
493 B
Nix

{lib, ...}: {
imports = [
# ./baserow.nix
./ghost.nix
# ./honcho.nix
./littlelink.nix
# ./matomo.nix
./netbird.nix
# ./n8n.nix
./restreamer.nix
./slash.nix
./slash-nemoti.nix
./authentik.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 --gateway=10.89.0.1
fi
'';
}