1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-14 15:09:41 +01:00

tuxedo/aura/15-gen1: migrate renamed option

This commit is contained in:
Cassie Cheung 2024-11-06 22:16:57 +08:00 committed by mergify[bot]
parent 36ed775c1e
commit 912e5b8a00

View file

@ -1,4 +1,5 @@
{lib, ...}: {
{ lib, ... }:
{
imports = [
../../../../common/cpu/amd
../../../../common/pc/laptop
@ -9,5 +10,13 @@
services.thermald.enable = lib.mkDefault true;
# keyboard backlight lives in /sys/class/leds/rgb:kbd_backlight
hardware.tuxedo-keyboard.enable = lib.mkDefault true;
hardware =
if lib.versionAtLeast (lib.versions.majorMinor lib.version) "24.11" then
{
tuxedo-drivers.enable = lib.mkDefault true;
}
else
{
tuxedo-keyboard.enable = lib.mkDefault true;
};
}