nixos/hosts: add autologin for testing hosts

This commit is contained in:
2026-05-04 05:10:19 +02:00
committed by ErrorNoInternet
parent 5e7b5813f4
commit ff5bcf504c
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"; networking.fqdn = "nix.tuxcord.net";
acme.rfc2136.nameserver = "tuxcord.net";
dns.enable = true;
services.getty.autologinUser = "root";
time.timeZone = "Europe/Madrid"; time.timeZone = "Europe/Madrid";
} }
+3 -1
View File
@@ -1,6 +1,8 @@
{ {
networking.fqdn = "tuxcord.test";
acme.enable = false; acme.enable = false;
dns.enable = true; dns.enable = true;
networking.fqdn = "tuxcord.test"; services.getty.autologinUser = "root";
} }