23 lines
404 B
Nix
23 lines
404 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-twitterchiver";
|
||
|
hostId = "c7ff157c";
|
||
|
|
||
|
interfaces.enp1s0 = {
|
||
|
ipv4.addresses = [{ address = "10.100.0.201"; prefixLength = 23; }];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "21.05";
|
||
|
}
|