61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
../../base.nix
|
|
../../common/metrics-exporters.nix
|
|
./hardware-configuration.nix
|
|
./filesystems.nix
|
|
./wireguard.nix
|
|
./exports.nix
|
|
|
|
./services/snappymail.nix
|
|
./services/calibre.nix
|
|
./services/fancontrol.nix
|
|
./services/jellyfin.nix
|
|
./services/kanidm.nix
|
|
./services/nginx
|
|
./services/postgres.nix
|
|
./services/timemachine.nix
|
|
./services/transmission.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "voyager";
|
|
defaultGateway = "192.168.10.1";
|
|
interfaces.eno1.ipv4 = {
|
|
addresses = [
|
|
{ address = "192.168.10.165"; prefixLength = 24; }
|
|
];
|
|
};
|
|
hostId = "8e84b235";
|
|
};
|
|
|
|
sops.defaultSopsFile = ../../secrets/voyager/voyager.yaml;
|
|
|
|
environment.variables = { EDITOR = "vim"; };
|
|
environment.systemPackages = with pkgs; [
|
|
zfs
|
|
];
|
|
|
|
services.snappymail = {
|
|
enable = true;
|
|
hostname = "mail.home.feal.no";
|
|
};
|
|
services.nginx.virtualHosts."${config.services.snappymail.hostname}" = let
|
|
certPath = "/etc/ssl-snakeoil/mail_home_feal_no";
|
|
in {
|
|
addSSL = true;
|
|
|
|
sslCertificate = "${certPath}.crt";
|
|
sslCertificateKey = "${certPath}.key";
|
|
};
|
|
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.oci-containers.backend = "docker";
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|
|
|