Wip Server
Some checks failed
Nix Build / build-nixos (push) Failing after 33s

This commit is contained in:
soraefir
2024-04-20 12:58:28 +02:00
parent 93dd93561f
commit 832471f37d
9 changed files with 174 additions and 33 deletions

View File

@ -1,4 +1,11 @@
{ ... }:
{
# virtualisation.arion.projects.
{ 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;};
};
};
}