testing the new config before pushing to main

This commit is contained in:
ooks-io 2024-01-19 20:28:53 +13:00
parent a545953c2d
commit c53123d2c5
38 changed files with 370 additions and 198 deletions

View file

@ -1,25 +0,0 @@
{ lib, config, ... }:
let
cfg = config.systemModules.networking;
in
{
config = lib.mkIf cfg.enable {
networking.networkmanager = {
enable = true;
dns = "systemd-resolved";
};
networking.firewall.allowedTCPPorts = [57621];
services = {
openssh = {
enable = true;
settings.UseDns = true;
};
resolved.enable = true;
};
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
};
}