blob: e1b41c0abf72f3ad03fa26fa62d06210417a97ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ fysilib, lib, ... }: {
description = "static website";
endOfLife = null;
options = {
cors = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
};
domain = lib.mkOption {
description = "Domain of the website";
type = fysilib.types.fqdn;
};
root = lib.mkOption {
description = "Domain of the website";
type = fysilib.types.str;
};
};
}
|