nixconfig/modules/server/default.nix

14 lines
340 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 {
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 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
}