mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
12 lines
210 B
Nix
12 lines
210 B
Nix
{ config, lib, ... }:
|
|
with lib;
|
|
{
|
|
imports = [
|
|
./..
|
|
../../../common/cpu/amd
|
|
../../../common/cpu/amd/pstate.nix
|
|
../../../common/gpu/amd
|
|
];
|
|
|
|
hardware.bluetooth.enable = lib.mkDefault true;
|
|
}
|