nixconfig/modules/server/default.nix
soraefir 3aedb499fb
Some checks failed
Nix Build / build-nixos (push) Has been cancelled
cache&arion
2024-04-21 10:30:42 +02:00

14 lines
340 B
Nix

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