nixos-config/machines/yuzuru/configuration.nix

31 lines
502 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2024-01-02 23:26:46 +01:00
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
2024-01-06 00:05:00 +01:00
./services/static-sites.nix
2024-01-02 23:26:46 +01:00
];
sbruder = {
nginx.hardening.enable = true;
full = false;
wireguard.home.enable = true;
infovhost.enable = true;
2024-01-02 23:26:46 +01:00
};
networking.hostName = "yuzuru";
system.stateVersion = "23.11";
networking.firewall.allowedTCPPorts = [
80
443
];
}