nixos/hosts: enable autologin for testing hosts

This commit is contained in:
2026-05-04 05:10:19 +02:00
committed by ErrorNoInternet
parent b78c41a5f7
commit a2534a3dab
2 changed files with 8 additions and 7 deletions
+5 -6
View File
@@ -1,11 +1,10 @@
{
acme = {
enable = true;
rfc2136.nameserver = "tuxcord.net";
};
dns.enable = true;
networking.fqdn = "nix.tuxcord.net";
acme.rfc2136.nameserver = "tuxcord.net";
dns.enable = true;
services.getty.autologinUser = "root";
time.timeZone = "Europe/Madrid";
}
+3 -1
View File
@@ -1,6 +1,8 @@
{
networking.fqdn = "tuxcord.test";
acme.enable = false;
dns.enable = true;
networking.fqdn = "tuxcord.test";
services.getty.autologinUser = "root";
}