mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
b978e8c903
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.
17 lines
187 B
Nix
17 lines
187 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.hardware.gpd.ppt;
|
|
in
|
|
{
|
|
imports = [
|
|
../../common/pc/laptop
|
|
../../common/pc/ssd
|
|
../../common/hidpi.nix
|
|
];
|
|
}
|