nix-config/hardware/configuration-rpi-3b.nix

11 lines
222 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
supportedFilesystems = lib.mkForce [ "vfat" "ext4" ];
};
networking.useDHCP = false;
networking.interfaces.eth0.useDHCP = true;
}