This commit is contained in:
2025-04-02 20:32:37 -04:00
parent 3a444bb515
commit db35f74857
5 changed files with 33 additions and 7 deletions

View File

@@ -29,5 +29,16 @@ in
settings.General.EnableNetworkConfiguration = true;
};
};
# TODO - Network Configuration
# (lib.mkIf (config.network != null) {
# networking = {
# inherit (config.network) defaultGateway nameservers;
# interfaces.${config.network.interface}.ipv4.addresses = [{
# inherit (config.network) address;
# prefixLength = 24;
# }];
# };
# })
};
}