Hardware/Dell/Wyse 3040: Difference between revisions

From NixOS Wiki
imported>N00b0ss
Created page with "Dell Wyse 3040 is a small Thinclient that can be used as a powersaving Mini-Server. '''NixOS 23.05''' There is a Bug in the 6.1 Linux Kernel that leads to a kernelpanic afte..."
 
imported>N00b0ss
No edit summary
Line 8: Line 8:
in /etc/nixos/configuration.nix
in /etc/nixos/configuration.nix


# some whoopsie in kernel 6.1.x maybe?
 
boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_15;
boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_15;


# reboot 60 seconds after kernel panic
boot.kernel.sysctl."kernel.panic" = 60;
boot.kernel.sysctl."kernel.panic" = 60;

Revision as of 10:11, 10 July 2023

Dell Wyse 3040 is a small Thinclient that can be used as a powersaving Mini-Server.

NixOS 23.05

There is a Bug in the 6.1 Linux Kernel that leads to a kernelpanic after 30min to 2h operation.

Solution: in /etc/nixos/configuration.nix


boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_15;

boot.kernel.sysctl."kernel.panic" = 60;