nixconfig/modules/server/default.nix
soraefir 832471f37d
Some checks failed
Nix Build / build-nixos (push) Failing after 33s
Wip Server
2024-04-20 12:58:45 +02:00

12 lines
274 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;};
};
};
}