depot/ops/nixos/frantech-lux01/default.nix
Luke Granger-Brown 4b14ea5b4d ops/nixos: remove rebuilder
It's in the common profile, we don't need it everywhere.
2022-01-23 16:57:20 +00:00

27 lines
667 B
Nix

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, lib, pkgs, config, ... }:
let
inherit (depot.ops) secrets;
in {
imports = [
../lib/frantech.nix
];
networking = {
hostName = "frantech-lux01";
hostId = "92a60220";
defaultGateway.address = "107.189.4.1";
defaultGateway6.address = "2605:6400:30::1";
interfaces.ens3 = {
ipv4.addresses = [{ address = "107.189.4.182"; prefixLength = 24; }];
ipv6.addresses = [{ address = "2605:6400:30:f1d2::1"; prefixLength = 48; }];
};
};
my.ip.tailscale = "100.125.159.57";
system.stateVersion = "21.05";
}