Files
nixconfig/modules/server/arion/default.nix
soraefir 66b594a1a2 Fix path
2026-05-03 23:17:18 +02:00

13 lines
422 B
Nix

{ config, pkgs, lib, ... }:{
config = lib.mkIf (config.syscfg.server ? arion) {
environment.systemPackages = with pkgs; [ arion ];
virtualisation.arion = {
backend = "podman-socket";
projects = {
cloud.settings = import ../docker/cloud.nix { inherit config pkgs lib; };
authentik.settings =
import ../docker/authentik.nix { inherit config pkgs lib; };
};
};
};
}