add bluetooth support on bolty
This commit is contained in:
parent
a7fc121d4a
commit
7b7e58bdec
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
{lib, ...}: {
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../cli.nix
|
||||
../send-logs.nix
|
||||
|
@ -24,6 +28,10 @@
|
|||
networking.hostName = "bolty";
|
||||
networking.hostId = "f05dd3b4";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
package = pkgs.bluezFull;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/London";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue