26 lines
517 B
Nix
26 lines
517 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
../lib/bvm.nix
|
|
../../../nix/pkgs/rundeck-bin/module.nix
|
|
];
|
|
|
|
# Networking!
|
|
networking = {
|
|
hostName = "bvm-nixosmgmt";
|
|
hostId = "49b0fbc7";
|
|
|
|
interfaces.enp1s0 = {
|
|
ipv4.addresses = [{ address = "10.100.0.200"; prefixLength = 23; }];
|
|
};
|
|
};
|
|
my.ip.tailscale = "100.65.226.19";
|
|
|
|
services.rundeck.enable = true;
|
|
|
|
system.stateVersion = "21.05";
|
|
}
|