add bluetooth support on bolty

This commit is contained in:
Cyryl Płotnicki 2023-11-18 13:08:10 +00:00
parent a7fc121d4a
commit 7b7e58bdec

View file

@ -1,4 +1,8 @@
{lib, ...}: { {
lib,
pkgs,
...
}: {
imports = [ imports = [
../cli.nix ../cli.nix
../send-logs.nix ../send-logs.nix
@ -24,6 +28,10 @@
networking.hostName = "bolty"; networking.hostName = "bolty";
networking.hostId = "f05dd3b4"; networking.hostId = "f05dd3b4";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
};
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";
} }