nixconfig/modules/server/default.nix
soraefir 29eeb04fac
All checks were successful
Nix Build / build-nixos (push) Successful in 5m57s
dockercompat&sops
2024-04-21 10:24:22 +02:00

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; };
};
};
}