1
0

Add host drain

This commit is contained in:
clerie 2020-12-19 22:51:16 +01:00
parent 0f40720ce7
commit 389b2a2e07
2 changed files with 37 additions and 0 deletions

3
hosts/drain/build-sd-image.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
nix build -f "<nixpkgs/nixos>" config.system.build.sdImage -I nixos-config=configuration.nix -I nixpkgs=channel:nixos-unstable --system aarch64-linux

View File

@ -0,0 +1,34 @@
{ lib, pkgs, config, modulesPath, ... }:
{
imports = [
../../configuration/common
(modulesPath + "/installer/cd-dvd/sd-image.nix")
];
boot.loader.grub.enable = false;
boot.loader.raspberryPi.enable = true;
boot.loader.raspberryPi.version = 4;
boot.kernelPackages = pkgs.linuxPackages_rpi4;
sdImage = {
firmwareSize = 1024;
firmwarePartitionName = "NIXOS_BOOT";
populateFirmwareCommands =
"${config.system.build.installBootLoader} ${config.system.build.toplevel} -d ./firmware";
populateRootCommands = "";
};
fileSystems."/boot/firmware" = {
mountPoint = "/boot";
neededForBoot = true;
};
documentation.enable = false;
networking.hostName = "drain";
networking.interfaces.eth0.useDHCP = true;
system.stateVersion = "21.03";
}