depot/ops/nixos/blade-kim/default.nix
2021-02-08 22:26:22 +00:00

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;
}];
};
}