1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 05:17:22 +02:00
nixos-hardware/tuxedo/pulse/14/gen3/README.md
2024-06-26 08:50:14 +00:00

794 B

TUXEDO Pulse 14 - Gen3

About

NixOS hardware configuration for TUXEDO Pulse 14 - Gen3.

Troubleshooting

Shutdown and Power Issues

With the Linux Kernel version 6.6.33 (NixOS 24.05) there are shutdown issues resulting in the battery not turning off completely. Apparently a newer Kernel (tested with 6.8.12) fixes this (the exact version where this problem is fixed is unknown).

You can use

  boot.kernelPackages =
    if (config.boot.zfs.enabled)
    then pkgs.zfs.latestCompatibleLinuxPackages
    else pkgs.linuxPackages_latest;

to use the latest Kernel, where pkgs should probably be the nixos-unstable channel (github:nixos/nixpkgs/nixos-unstable).