From 9b8f9a4bf5e13efe49ec101f127d0df3d7bb3cf3 Mon Sep 17 00:00:00 2001 From: adikro Date: Sat, 27 Jun 2026 02:41:27 +0200 Subject: revamped sanoid, syncoid and nfs --- os/srv/cluster.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 os/srv/cluster.nix (limited to 'os/srv/cluster.nix') diff --git a/os/srv/cluster.nix b/os/srv/cluster.nix new file mode 100644 index 0000000..6e54ee2 --- /dev/null +++ b/os/srv/cluster.nix @@ -0,0 +1,16 @@ +{ lib, ... }: { + options.os.cluster = { + nginxProxies = lib.mkOption { + type = lib.types.attrsOf lib.types.attrs; + default = { }; + }; + autheliaRules = lib.mkOption { + type = lib.types.listOf lib.types.attrs; + default = [ ]; + }; + oidcClients = lib.mkOption { + type = lib.types.listOf lib.types.attrs; + default = [ ]; + }; + }; +} -- cgit v1.3