depot/ops/nixos/frantech-las01/default.nix

29 lines
734 B
Nix
Raw Normal View History

2021-03-19 01:11:37 +00:00
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, lib, pkgs, config, ... }:
2021-03-19 01:11:37 +00:00
let
inherit (depot.ops) secrets;
in {
imports = [
../lib/frantech.nix
2021-03-19 01:11:37 +00:00
];
networking = {
hostName = "frantech-las01";
2021-03-19 01:11:37 +00:00
hostId = "2b6a8f37";
defaultGateway.address = "205.185.116.1";
defaultGateway6.address = "2605:6400:20::1";
2021-03-19 01:11:37 +00:00
interfaces.ens3 = {
ipv4.addresses = [{ address = "205.185.116.42"; prefixLength = 24; }];
ipv6.addresses = [{ address = "2605:6400:20:179b::1"; prefixLength = 48; }];
};
};
my.ip.tailscale = "100.127.132.77";
2022-09-01 23:22:16 +00:00
my.ip.tailscale6 = "fd7a:115c:a1e0:ab12:4843:cd96:627f:844d";
2021-03-19 01:11:37 +00:00
system.stateVersion = "21.05";
}