Daniel Lundin
f406d0f98d
Some checks failed
ci/woodpecker/push/ci Pipeline failed
This might not be the best idea, but serves as a reminder to consider sensitive deployments in the future.
17 lines
324 B
Nix
17 lines
324 B
Nix
{ config, ... }:
|
|
{
|
|
networking = {
|
|
useNetworkd = true;
|
|
hostName = "";
|
|
|
|
# Easy debugging.
|
|
firewall.enable = false;
|
|
};
|
|
|
|
services.resolved = {
|
|
fallbackDns = [ ]; # Disable fallback DNS. DNS will fail if resolvers are unconfigured
|
|
};
|
|
|
|
# Faster boot.
|
|
systemd.network.wait-online.enable = false;
|
|
}
|