Skip to content

Commit ae8bb43

Browse files
nixos/maddy: remove absolute path literals (#513213)
2 parents be8392f + 988be66 commit ae8bb43

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nixos/modules/services/mail/maddy.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@ in
329329
This option does not delete accounts which are not (anymore) listed.
330330
'';
331331
example = {
332-
"user1@localhost".passwordFile = /secrets/user1-localhost;
333-
"user2@localhost".passwordFile = /secrets/user2-localhost;
332+
"user1@localhost".passwordFile = "/secrets/user1-localhost";
333+
"user2@localhost".passwordFile = "/secrets/user2-localhost";
334334
};
335335
type = lib.types.attrsOf (
336336
lib.types.submodule {

0 commit comments

Comments
 (0)