2024-04-21 13:27:56 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
2024-04-20 12:58:28 +02:00
|
|
|
let
|
|
|
|
in {
|
2024-05-08 18:47:42 +02:00
|
|
|
imports = [ ./sops ];
|
2024-04-21 10:30:42 +02:00
|
|
|
environment.systemPackages = with pkgs; [ arion ];
|
2024-04-20 12:58:28 +02:00
|
|
|
virtualisation.arion = {
|
|
|
|
backend = "podman-socket";
|
|
|
|
projects = {
|
2024-04-21 13:27:56 +02:00
|
|
|
cloud.settings = import ./docker/cloud.nix { inherit config pkgs lib; };
|
2024-04-21 10:24:22 +02:00
|
|
|
authentik.settings =
|
2024-04-21 13:27:56 +02:00
|
|
|
import ./docker/authentik.nix { inherit config pkgs lib; };
|
2024-04-20 12:58:28 +02:00
|
|
|
};
|
|
|
|
};
|
2024-05-08 18:47:42 +02:00
|
|
|
|
2023-12-01 12:54:30 +01:00
|
|
|
}
|