Simon Bruder
ef2c667bfe
This also changes the firewall rules for the IoT network to no longer accept connections to ntp.org pool hosts over 123/UDP. All clients should use the local NTP server.
27 lines
524 B
Nix
27 lines
524 B
Nix
# SPDX-FileCopyrightText: 2023-2024 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules
|
|
|
|
./services/co2_exporter.nix
|
|
./services/ntp.nix
|
|
./services/router
|
|
./services/snmp-exporter.nix
|
|
./services/wordclock-dimmer.nix
|
|
];
|
|
|
|
sbruder = {
|
|
wireguard.home.enable = true;
|
|
nginx.hardening.enable = true;
|
|
};
|
|
|
|
networking.hostName = "shinobu";
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|