nix-config/hosts/blogs/default.nix

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

39 lines
787 B
Nix
Raw Normal View History

2022-12-04 08:53:28 +01:00
{ config, ... }:
2021-12-24 03:18:20 +01:00
{
2022-06-20 00:06:32 +02:00
microvm.mem = 2048;
c3d2.deployment.server = "server10";
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
2022-07-31 18:13:03 +02:00
sops = {
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
defaultSopsFile = ./secrets.yaml;
secrets = {
"plume/env".owner = config.systemd.services.plume.serviceConfig.User;
};
2021-12-24 03:18:20 +01:00
};
services.nginx = {
enable = true;
virtualHosts."blogs.c3d2.de" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:7878";
};
2021-12-24 03:18:20 +01:00
};
system.stateVersion = "22.05";
2021-12-24 03:18:20 +01:00
}