nixos-config/machines/yuzuru/configuration.nix
Simon Bruder 8627ed8dc1
yuzuru/li7y: Init
For now, it is implemented using OCI containers for fast deployments.
2024-07-19 11:36:07 +02:00

32 lines
526 B
Nix

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