2023-04-15 20:44:47 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
2023-04-22 16:49:04 +02:00
|
|
|
../../base.nix
|
2023-04-15 20:44:47 +02:00
|
|
|
../../common/metrics-exporters.nix
|
|
|
|
./hardware-configuration.nix
|
2023-04-17 02:23:56 +02:00
|
|
|
./filesystems.nix
|
2023-06-07 20:23:49 +02:00
|
|
|
./wireguard.nix
|
2023-04-24 17:08:23 +02:00
|
|
|
./exports.nix
|
2023-05-09 23:14:31 +02:00
|
|
|
|
2023-08-12 22:00:15 +02:00
|
|
|
./services/snappymail.nix
|
2023-11-16 15:54:54 +01:00
|
|
|
./services/calibre.nix
|
|
|
|
./services/fancontrol.nix
|
|
|
|
./services/jellyfin.nix
|
|
|
|
./services/kanidm.nix
|
2024-01-03 02:35:57 +01:00
|
|
|
./services/nextcloud.nix
|
2023-04-16 16:49:08 +02:00
|
|
|
./services/nginx
|
2023-05-03 17:49:50 +02:00
|
|
|
./services/postgres.nix
|
2023-11-16 15:54:54 +01:00
|
|
|
./services/timemachine.nix
|
2023-05-11 14:34:13 +02:00
|
|
|
./services/transmission.nix
|
2023-04-16 20:30:31 +02:00
|
|
|
];
|
2023-04-15 20:44:47 +02:00
|
|
|
|
|
|
|
networking = {
|
|
|
|
hostName = "voyager";
|
2024-01-03 02:35:57 +01:00
|
|
|
bridges.br0.interfaces = [ "eno1" ];
|
|
|
|
interfaces.br0.useDHCP = false;
|
|
|
|
interfaces.br0.ipv4.addresses = [
|
2023-04-16 20:30:31 +02:00
|
|
|
{ address = "192.168.10.165"; prefixLength = 24; }
|
2024-01-03 02:35:57 +01:00
|
|
|
];
|
|
|
|
|
2023-04-15 20:44:47 +02:00
|
|
|
hostId = "8e84b235";
|
2024-01-03 02:35:57 +01:00
|
|
|
defaultGateway = "192.168.10.1";
|
2023-04-15 20:44:47 +02:00
|
|
|
};
|
|
|
|
|
2023-04-26 12:32:47 +02:00
|
|
|
sops.defaultSopsFile = ../../secrets/voyager/voyager.yaml;
|
|
|
|
|
2023-04-15 20:44:47 +02:00
|
|
|
environment.variables = { EDITOR = "vim"; };
|
|
|
|
environment.systemPackages = with pkgs; [
|
2023-04-16 16:49:08 +02:00
|
|
|
zfs
|
2023-04-17 02:23:56 +02:00
|
|
|
];
|
2023-04-15 20:44:47 +02:00
|
|
|
|
2023-06-09 00:46:54 +02:00
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
virtualisation.oci-containers.backend = "docker";
|
|
|
|
|
2023-04-15 20:44:47 +02:00
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|
|
|
|
|