Fixing networks arion
All checks were successful
Nix Build / build-nixos (push) Successful in 6m8s

This commit is contained in:
soraefir
2024-04-21 13:27:56 +02:00
parent 0f4154bcb5
commit a8c74cba69
4 changed files with 20 additions and 10 deletions

View File

@ -1,13 +1,13 @@
{ config, pkgs, ... }:
{ 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; };
cloud.settings = import ./docker/cloud.nix { inherit config pkgs lib; };
authentik.settings =
import ./docker/authentik.nix { inherit config pkgs; };
import ./docker/authentik.nix { inherit config pkgs lib; };
};
};
}