self-hosting/profiles/storage.nix

15 lines
326 B
Nix
Raw Normal View History

2021-11-26 00:14:44 +01:00
{ config, lib, pkgs, ... }:
{
imports = [
../environment.nix
../hardware/hetzner-dedicated-storage1.nix
../modules/openssh.nix
2021-11-29 02:04:29 +01:00
../modules/mailserver.nix
2021-11-26 00:14:44 +01:00
];
2021-11-29 02:04:29 +01:00
security.acme.email = "letsencrypt.account@banditlair.com";
security.acme.acceptTerms = true;
networking.firewall.allowedTCPPorts = [ 80 ];
2021-11-26 00:14:44 +01:00
}