mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
13 lines
284 B
Nix
13 lines
284 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../environment.nix
|
|
../hardware/hetzner-dedicated-storage1.nix
|
|
../modules/openssh.nix
|
|
../modules/mailserver.nix
|
|
../modules/nginx.nix
|
|
../modules/jellyfin.nix
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
}
|