clanModules/mycelium: Allow by default, if adding the module
This commit is contained in:
@@ -6,8 +6,17 @@
|
|||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
clan.mycelium.openFirewall = lib.mkEnableOption "Open the firewall for mycelium";
|
clan.mycelium.openFirewall = lib.mkOption {
|
||||||
clan.mycelium.addHostedPublicNodes = lib.mkEnableOption "Add hosted Public nodes";
|
type = lib.types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Open the firewall for mycelium";
|
||||||
|
};
|
||||||
|
|
||||||
|
clan.mycelium.addHostedPublicNodes = lib.mkOption {
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Add hosted Public nodes";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config.services.mycelium = {
|
config.services.mycelium = {
|
||||||
|
|||||||
Reference in New Issue
Block a user