Compare commits

...

2 Commits

Author SHA1 Message Date
Astro fc6c37ab7f shit 2021-09-23 23:24:47 +02:00
Astro 4e05d4a253 flake.nix: try moving import of sd-image-aarch64.nix to the nixosModule 2021-09-23 19:39:35 +02:00
4 changed files with 24 additions and 2 deletions

View File

@ -214,7 +214,6 @@
pulsebert = nixosSystem' {
modules = [
"${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
./hosts/pulsebert
];
system = "aarch64-linux";
@ -222,7 +221,6 @@
radiobert = nixosSystem' {
modules = [
"${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
./hosts/radiobert
];
system = "aarch64-linux";

View File

@ -22,6 +22,7 @@ rec {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE9RKlt+mIew5epxHt7Gab44yFOdeD+L/EhhA6Ospzyq";
builders = [ "ssh://client@172.22.99.110" ];
wol = true;
raspberryPi = 3;
};
samba = { };
storage-ng.publicKey =
@ -119,6 +120,7 @@ rec {
};
radiobert.ip4 = "172.22.99.117";
radiobert.rasbperryPi = 4;
};
hqGlobal = builtins.attrNames hosts;

View File

@ -31,6 +31,7 @@ in {
./users
./stats.nix
./openwebrx.nix
./raspberrypi.nix
];
options.c3d2 = with lib;

21
lib/raspberrypi.nix Normal file
View File

@ -0,0 +1,21 @@
{ inputs, hostRegistry, options, lib, ... }:
let
enabled = hostRegistry.hosts.${config.networking.hostName} ? raspberryPi &&
hostRegistry.hosts.${config.networking.hostName}.raspberryPi != null;
in
{
imports = lib.optionals enabled [
"${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
];
config = lib.mkIf enabled {
sdImage = {
compressImage = false;
imageBaseName = config.networking.hostName;
firmwareSize = 512;
};
# Don't build ZFS for aarch64 (broken?)
boot.supportedFilesystems = lib.mkForce [ "vfat" "ext4" ];
boot.zfs.enableUnstable = true;
};
}