13 lines
287 B
Nix
13 lines
287 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
in {
|
|
virtualisation.arion = {
|
|
backend = "podman-socket";
|
|
projects = {
|
|
cloud.settings = import ./docker/cloud.nix { inherit config pkgs; };
|
|
authentik.settings =
|
|
import ./docker/authentik.nix { inherit config pkgs; };
|
|
};
|
|
};
|
|
}
|