Fix fdt typo

This commit is contained in:
asonix 2023-01-17 12:41:25 -06:00
parent 5cb3d75fb4
commit dbe682becd

View file

@ -1,7 +1,7 @@
{ nixpkgs, pkgs, lib, kernel, authorized-keys }:
let
buildSystem = fdt: lib.nixosSystem {
buildSystem = fdt: nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [
@ -25,7 +25,7 @@ let
boot.kernelPackages = kernel;
boot.kernelParams = [ "console=ttyS2,1500000n8" ];
hardware.deviceTree.name = ftd; # "rockchip/rk3566-soquartz-blade.dtb";
hardware.deviceTree.name = fdt;
system.stateVersion = "23.05";
}