3 Commits

Author SHA1 Message Date
ErrorNoInternet 8cdb3d57c6 nixos/hosts: declare fileSystems for testing hosts
Check / Nix flake (push) Failing after 8s
Lint / Nix expressions (push) Failing after 11s
2026-05-04 00:09:20 -04:00
ErrorNoInternet 1172dce549 nixos/services/openssh: enable X11 forwarding 2026-05-04 00:09:20 -04:00
javalsai 17da8baba7 nixos/hosts: add autologin for testing hosts 2026-05-03 23:53:35 -04:00
7 changed files with 29 additions and 8 deletions
+8 -5
View File
@@ -1,11 +1,14 @@
{ {
acme = { imports = [
enable = true; ./storage.nix
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";
} }
+6
View File
@@ -0,0 +1,6 @@
{
fileSystems."/" = {
device = "/dev/vda";
fsType = "ext4";
};
}
+1
View File
@@ -32,6 +32,7 @@
device = "/dev/xvda2"; device = "/dev/xvda2";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@persist" ] ++ defaultOptions; options = [ "subvol=@persist" ] ++ defaultOptions;
neededForBoot = true;
}; };
}; };
} }
+7 -1
View File
@@ -1,6 +1,12 @@
{ {
imports = [
./storage.nix
];
networking.fqdn = "tuxcord.test";
acme.enable = false; acme.enable = false;
dns.enable = true; dns.enable = true;
networking.fqdn = "tuxcord.test"; services.getty.autologinUser = "root";
} }
+6
View File
@@ -0,0 +1,6 @@
{
fileSystems."/" = {
device = "/dev/vda";
fsType = "ext4";
};
}
-2
View File
@@ -55,8 +55,6 @@
}; };
}; };
fileSystems."/persist".neededForBoot = true;
environment.persistence."/persist" = { environment.persistence."/persist" = {
enable = true; enable = true;
hideMounts = true; hideMounts = true;
+1
View File
@@ -4,6 +4,7 @@
settings = { settings = {
ClientAliveInterval = 300; ClientAliveInterval = 300;
X11Forwarding = true;
KbdInteractiveAuthentication = false; KbdInteractiveAuthentication = false;
PasswordAuthentication = false; PasswordAuthentication = false;