Luke Granger-Brown
2b8dce0920
We now use a stub configuration to kick off the pipeline, which is dynamically generated using Nix config.
31 lines
768 B
Nix
31 lines
768 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 = "/dev/disk/by-id/usb-USB_SanDisk_3.2Gen1_01012b89ef8e36218414588461cda968a6fbfa5bf39e398aaeda43d9e398b05f86800000000000000000000097b1f26d001a240091558107b6a8e160-0:0";
|
|
|
|
# Networking!
|
|
networking = {
|
|
hostName = "blade-chakotay";
|
|
hostId = "40bc5a75";
|
|
};
|
|
my.ip.tailscale = "100.121.11.7";
|
|
my.blade.bay = 5;
|
|
my.blade.macAddress = {
|
|
internal = "e4:11:5b:ac:e3:b8";
|
|
storage = "e4:11:5b:ac:e3:bc";
|
|
};
|
|
my.deploy.enable = false;
|
|
|
|
services.ceph = {
|
|
#osd.enable = true;
|
|
};
|
|
}
|