nixconfig/modules/server/default.nix
soraefir a8c74cba69
All checks were successful
Nix Build / build-nixos (push) Successful in 6m8s
Fixing networks arion
2024-04-21 13:27:56 +02:00

14 lines
353 B
Nix

{ config, pkgs, lib, ... }:
let
in {
environment.systemPackages = with pkgs; [ arion ];
virtualisation.arion = {
backend = "podman-socket";
projects = {
cloud.settings = import ./docker/cloud.nix { inherit config pkgs lib; };
authentik.settings =
import ./docker/authentik.nix { inherit config pkgs lib; };
};
};
}