depot/ops/nixos/blade-paris/default.nix

25 lines
472 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, lib, pkgs, rebuilder, config, ... }:
let
inherit (depot.ops) secrets;
in {
imports = [
../lib/blade.nix
];
boot.loader.grub.device = "";
# Networking!
networking = {
hostName = "blade-paris";
hostId = "41b2a198";
interfaces.bond0.ipv4.addresses = [{
address = "192.168.1.184";
prefixLength = 24;
}];
};
}