2.home-manager/tests/modules/programs/himalaya/basic-expected.toml
Austin Horstman 1e313820a3 treewide: adapt toml generator changes
Upstream formatter change in
https://github.com/NixOS/nixpkgs/pull/512319 caused tests to fail.
2026-05-02 20:19:12 -05:00

40 lines
880 B
TOML

[accounts]
[accounts.'hm@example.com']
default = true
display-name = 'H. M. Test'
email = 'hm@example.com'
[accounts.'hm@example.com'.backend]
host = 'imap.example.com'
login = 'home.manager'
port = 993
type = 'imap'
[accounts.'hm@example.com'.backend.auth]
cmd = 'password-command'
type = 'password'
[accounts.'hm@example.com'.backend.encryption]
type = 'tls'
[accounts.'hm@example.com'.folder]
[accounts.'hm@example.com'.folder.aliases]
drafts = 'Drafts'
inbox = 'Inbox'
sent = 'Sent'
trash = 'Trash'
[accounts.'hm@example.com'.message]
[accounts.'hm@example.com'.message.send]
[accounts.'hm@example.com'.message.send.backend]
host = 'smtp.example.com'
login = 'home.manager'
port = 465
type = 'smtp'
[accounts.'hm@example.com'.message.send.backend.auth]
cmd = 'password-command'
type = 'password'
[accounts.'hm@example.com'.message.send.backend.encryption]
type = 'tls'