nfsroot: disable firewall again

gets in the way of tftp and nfs
This commit is contained in:
Astro 2024-01-11 21:50:19 +01:00
parent 3c53370246
commit e3edede9a8
1 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,10 @@ in {
"/${export}".options = [ "relatime" "discard" ];
}) {} nfsExports;
networking.hostName = "nfsroot";
networking = {
hostName = "nfsroot";
firewall.enable = false;
};
system.stateVersion = "22.05";
}