1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2025-03-02 03:45:31 +01:00
nixos-hardware/asus/ally/rc71l/default.nix
2024-06-07 10:10:50 +08:00

15 lines
482 B
Nix

{ pkgs, lib, ... }:
{
imports = [
../../../common/cpu/amd
../../../common/cpu/amd/pstate.nix
../../../common/gpu/amd
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../../common/pc/laptop/battery.nix
];
# 6.5 adds many fixes and improvements for the Ally
# This includes for example performance, audio and bluetooth
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.5") (lib.mkDefault pkgs.linuxPackages_latest);
}