mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-25 12:31:27 +00:00
add meta to all fields
This commit is contained in:
parent
ef9eff290e
commit
f2df5948c8
|
@ -13,10 +13,21 @@ in
|
||||||
default = false;
|
default = false;
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
description = "Enable the forgejo module";
|
description = "Enable the forgejo module";
|
||||||
|
} // {
|
||||||
|
meta = {
|
||||||
|
type = "sp-module-enable";
|
||||||
|
default = false;
|
||||||
|
description = "Enable the forgejo module";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
location = lib.mkOption {
|
location = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
description = "The location to store the forgejo data";
|
description = "The location to store the forgejo data";
|
||||||
|
} // {
|
||||||
|
meta = {
|
||||||
|
type = "sp-module-location";
|
||||||
|
description = "The location to store the forgejo data";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
subdomain = lib.mkOption {
|
subdomain = lib.mkOption {
|
||||||
default = "git";
|
default = "git";
|
||||||
|
|
Loading…
Reference in a new issue