mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
Add GPD Win Mini 2024 to the configuration list. (#1099) lenovo: fix unstable wifi on Yoga laptops Add extra modprobe options to fix unstable wifi on Yoga laptops. * Merge branch 'NixOS:master' into master * Add basic GPD Mini configuration. * Merge branch 'NixOS:master' into master * flake: Restore flake.nix to original format Restore the flake.nix file to the original format from nixos-hardware master.
13 lines
196 B
Nix
13 lines
196 B
Nix
{ config, lib, ... }:
|
|
with lib;
|
|
{
|
|
imports = [
|
|
./..
|
|
../../../common/cpu/amd
|
|
../../../common/cpu/amd/pstate.nix
|
|
../../../common/gpu/amd
|
|
];
|
|
|
|
hardware.bluetooth.enable = true;
|
|
}
|