debugging

This commit is contained in:
oxapentane - 2022-08-24 14:45:40 +02:00
parent 06741ed2ac
commit 7961371ded
Signed by: oxapentane
GPG Key ID: 91FA5E5BF9AA901C
1 changed files with 0 additions and 18 deletions

View File

@ -1,28 +1,10 @@
{ lib, pkgs, ... }:
{
boot = {
loader = {
grub.enable = false;
raspberryPi.firmwareConfig = ''
hdmi_force_hotplug = 1
'';
# raspberryPi = {
# enable = true;
# version = 4;
# };
};
kernelPackages = pkgs.linuxPackages_latest;
# No ZFS on latest kernel:
supportedFilesystems = lib.mkForce [ "vfat" "ext4" ];
};
# sdImage = {
# compressImage = false;
# imageBaseName = config.networking.hostName;
# firmwareSize = 512;
# };
networking.useDHCP = false;
networking.interfaces.eth0.useDHCP = true;
# boot.loader.generic-extlinux-compatible.enable = lib.mkForce false;
}