fix(nginx): fix enable option for service
This commit is contained in:
parent
5792e478af
commit
2ca22205aa
5 changed files with 18 additions and 24 deletions
|
@ -20,17 +20,15 @@ in
|
|||
};
|
||||
|
||||
nginx = {
|
||||
enable = mkEnableOption {
|
||||
description = "Enable nginx for this service.";
|
||||
type = types.bool;
|
||||
default = true;
|
||||
enable = mkEnableOption "Enable nginx for this service."
|
||||
// {
|
||||
default = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
redlib = {
|
||||
enable = mkEnableOption {
|
||||
description = "Whether or not to enable redlib.";
|
||||
type = type.bool;
|
||||
enable = mkEnableOption "Whether or not to enable redlib."
|
||||
// {
|
||||
default = true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue