project-flake/servers/mio/main.nix
2025-10-19 11:14:51 +07:00

15 lines
No EOL
278 B
Nix

{ config, pkgs, pkgs-unstable, secret, ... }:
{
imports = [
./hardware-configuration.nix
./nginx.nix
];
environment.systemPackages = with pkgs; [
pkgs-unstable.sing-box
];
services.yggdrasil.persistentKeys = true;
networking.firewall.allowedTCPPorts = [ 443 ];
}