diff options
author | Alan Pearce | 2023-08-02 06:35:57 +0200 |
---|---|---|
committer | Alan Pearce | 2023-08-02 06:35:57 +0200 |
commit | a37e7efe7d6cdfb9e3a7dfbc281c8b92eb7b7b21 (patch) | |
tree | 070c57eddc6b5c5041764048141a5cae8f9e82af | |
parent | 994fb96cf94676e400b44584249cf91314d778c4 (diff) | |
download | website-a37e7efe7d6cdfb9e3a7dfbc281c8b92eb7b7b21.tar.lz website-a37e7efe7d6cdfb9e3a7dfbc281c8b92eb7b7b21.tar.zst website-a37e7efe7d6cdfb9e3a7dfbc281c8b92eb7b7b21.zip |
Update kernel setup
-rw-r--r-- | content/post/nixos-on-nanopi-r5s.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/post/nixos-on-nanopi-r5s.md b/content/post/nixos-on-nanopi-r5s.md index 46c8cfa..825d6b4 100644 --- a/content/post/nixos-on-nanopi-r5s.md +++ b/content/post/nixos-on-nanopi-r5s.md @@ -48,7 +48,8 @@ in { imports = [ ./hardware-configuration.nix ]; boot = { - kernelParams = [ "console=tty0" ]; + kernelPackages = pkgs.linuxKernel.packages.linux_6_4; + # partial Rockchip related changes from Debian 12 kernel version 6.1 # Also, see here: # https://discourse.nixos.org/t/how-to-provide-missing-headers-to-a-kernel-build/11422/3 |