NixOS on ARM/UEFI: Difference between revisions

imported>Mweinelt
Bootloader configuration: Use proper file template for nixos configuration
imported>Mweinelt
mNo edit summary
Line 100: Line 100:
Using the latest kernel is probably a good idea. Hardware support for ARM platforms is always improving, and using the latest kernel, rather than the "latest LTS", might be enough to break it or make it.
Using the latest kernel is probably a good idea. Hardware support for ARM platforms is always improving, and using the latest kernel, rather than the "latest LTS", might be enough to break it or make it.


<syntaxhighlight lang="nix">
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{ /* configuration.nix */
{
   boot.kernelPackages = pkgs.linuxPackages_latest;
   boot.kernelPackages = pkgs.linuxPackages_latest;
}
}
</syntaxhighlight>
</nowiki>}}


== Known Issues ==
== Known Issues ==