Litenet-Nix-Infra/host/matrix/configuration.nix
2024-07-19 03:31:44 +00:00

23 lines
432 B
Nix
Executable file

{ config, pkgs, lib, ... }:
{
imports =
[
../../modules/base-server.nix
./services/postgres.nix
./services/matrix/root.nix
./services/nginx/nginx.nix
];
networking = {
hostName = "matrix";
interfaces.ens18.ipv4.addresses = [ {
address = "10.10.0.3";
prefixLength = 8;
} ];
defaultGateway.interface = "ens18";
};
system.stateVersion = "22.11"; # DO NOT EDIT!
}