refactor(nixos): standardize configuration structures

- Renamed and reorganized configuration keys for consistency (`settings` usage).
- Updated Postfix, systemd, and Syncthing configurations to adhere to the standardized format.
- Improved maintainability and readability of NixOS configurations.
This commit is contained in:
Harald Hoyer 2025-12-03 10:02:15 +01:00
parent d7424a4cb6
commit 4386027761
3 changed files with 35 additions and 33 deletions

View file

@ -7,8 +7,8 @@
services.postfix = {
enable = true;
settings.main.relayhost = [ "[smtp.gmail.com]:587" ];
config = {
setting.main = {
relayhost = [ "[smtp.gmail.com]:587" ];
smtp_use_tls = "yes";
smtp_sasl_auth_enable = "yes";
smtp_sasl_security_options = "";