mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
The common/pc/laptop/ssd folder was apparently moved a level up and was replaced by a symlink to keep things working. We can consolidate this now.
16 lines
455 B
Nix
16 lines
455 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
../../../common/cpu/amd
|
|
../../../common/cpu/amd/pstate.nix
|
|
../../../common/gpu/amd
|
|
../../../common/pc/laptop
|
|
../../../common/pc/ssd
|
|
../../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);
|
|
}
|