This commit is contained in:
Henry Hiles 2025-10-17 14:22:00 -04:00
commit 7b8c6d9ed8
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View file

@ -1,11 +1,19 @@
{ config, lib, ... }:
{
config,
pkgs,
lib,
...
}:
{
options.quad.matrix = {
enable = lib.mkEnableOption "matrix";
domain = lib.mkOption { type = lib.types.string; };
settings = lib.mkOption {
type = lib.types.submodule { };
type = lib.types.submodule {
freeformType = (pkgs.formats.toml { }).type;
};
default = { };
};
};