nixconfig/modules/server/default.nix

13 lines
287 B
Nix
Raw Normal View History

2024-04-21 10:24:22 +02:00
{ config, pkgs, ... }:
2024-04-20 12:58:28 +02:00
let
in {
virtualisation.arion = {
backend = "podman-socket";
projects = {
2024-04-21 10:24:22 +02:00
cloud.settings = import ./docker/cloud.nix { inherit config pkgs; };
authentik.settings =
import ./docker/authentik.nix { inherit config pkgs; };
2024-04-20 12:58:28 +02:00
};
};
2023-12-01 12:54:30 +01:00
}