25 lines
489 B
Nix
25 lines
489 B
Nix
# SPDX-FileCopyrightText: 2022 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, pkgs, ... }:
|
|
let
|
|
inherit (depot.ops) secrets;
|
|
in {
|
|
imports = [
|
|
../lib/bvm.nix
|
|
];
|
|
|
|
# Networking!
|
|
networking = {
|
|
hostName = "bvm-paperless";
|
|
hostId = "c8d6f81f";
|
|
|
|
interfaces.enp1s0 = {
|
|
ipv4.addresses = [{ address = "10.100.0.211"; prefixLength = 23; }];
|
|
};
|
|
};
|
|
my.ip.tailscale = "100.85.236.121";
|
|
|
|
system.stateVersion = "22.05";
|
|
}
|