24 lines
470 B
Nix
24 lines
470 B
Nix
# 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-kim";
|
|
hostId = "1643efb6";
|
|
interfaces.bond0.ipv4.addresses = [{
|
|
address = "192.168.1.183";
|
|
prefixLength = 24;
|
|
}];
|
|
};
|
|
}
|