nix-config/hosts/blogs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
800 B
Nix
Raw Normal View History

{ hostRegistry, zentralwerk, config, ... }:
2021-12-24 03:18:20 +01:00
{
2022-06-20 00:06:32 +02:00
microvm.mem = 2048;
c3d2.deployment = {
server = "server10";
mounts = [ "etc" "home" "var"];
};
system.stateVersion = "22.05";
2021-12-24 03:18:20 +01:00
networking = {
hostName = "blogs";
firewall.allowedTCPPorts = [
80 443
];
};
2021-12-25 02:02:45 +01:00
# See secrets/hosts/blogs for the .env file with all settings
2021-12-29 21:32:20 +01:00
services.plume = {
enable = true;
envFile = config.sops.secrets."plume/env".path;
};
2021-12-25 02:02:45 +01:00
sops.secrets = {
"plume/env".owner = config.systemd.services.plume.serviceConfig.User;
2021-12-24 03:18:20 +01:00
};
2021-12-25 02:02:45 +01:00
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
2021-12-24 03:18:20 +01:00
services.nginx.enable = true;
services.nginx.virtualHosts."blogs.c3d2.de" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:7878";
};
}