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