nixconfig/modules/server/default.nix

12 lines
274 B
Nix
Raw Normal View History

2024-04-20 12:58:28 +02:00
{ 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;};
};
};
2023-12-01 12:54:30 +01:00
}