23 lines
434 B
Nix
23 lines
434 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
../lib/bvm.nix
|
|
];
|
|
|
|
# Networking!
|
|
networking = {
|
|
hostName = "bvm-prosody";
|
|
hostId = "5c62ee63";
|
|
|
|
interfaces.enp1s0 = {
|
|
ipv4.addresses = [{ address = "10.100.0.202"; prefixLength = 23; }];
|
|
};
|
|
};
|
|
my.ip.tailscale = "100.86.22.44";
|
|
|
|
system.stateVersion = "21.05";
|
|
}
|