Initial import.

This commit is contained in:
2026-08-10 11:17:15 -04:00
parent f7971505b6
commit d988fa0495
9 changed files with 1528 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
timezone = "America/New_York";
locale = "en_US.UTF-8";
user = {
username = "someuser";
fullname = "Some User";
pkgs = [];
};
network = {
hostname = "somehost";
firewall = {
tcp_ports = [];
udp_ports = [];
};
};
smtp = {
tls = true;
tls_starttls = false;
port = 465;
host = "example.com";
to = "user2@exaple.com";
from = "user1@example.com";
user = "user1@example.com";
password = "secret";
};
}