nixos-config/machines/shinobu/configuration.nix

27 lines
524 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2023-2024 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2023-07-01 12:37:12 +02:00
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
./services/co2_exporter.nix
./services/ntp.nix
2023-09-24 14:41:22 +02:00
./services/router
2023-11-04 13:57:59 +01:00
./services/snmp-exporter.nix
2023-12-31 16:36:16 +01:00
./services/wordclock-dimmer.nix
2023-07-01 12:37:12 +02:00
];
sbruder = {
wireguard.home.enable = true;
nginx.hardening.enable = true;
};
networking.hostName = "shinobu";
system.stateVersion = "23.05";
}