mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 19:39:16 +05:00
Merge pull request #27 from eqyiel/fix-examples
nixos-mailserver/default.nix: fix examples
This commit is contained in:
commit
a12c42bdfb
@ -28,13 +28,13 @@ in
|
||||
|
||||
fqdn = mkOption {
|
||||
type = types.str;
|
||||
example = "[ example.com ]";
|
||||
example = "example.com";
|
||||
description = "The fully qualified domain name of the mail server.";
|
||||
};
|
||||
|
||||
domains = mkOption {
|
||||
type = types.listOf types.str;
|
||||
example = "[ example.com ]";
|
||||
example = [ "example.com" ];
|
||||
default = [];
|
||||
description = "The domains that this mail server serves.";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user