From 6ee095698b158ddace036780d189a44377010be2 Mon Sep 17 00:00:00 2001 From: Elias Renman Date: Wed, 29 Nov 2023 21:43:22 +0100 Subject: [PATCH] feat: bluetooth support --- configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration.nix b/configuration.nix index ada71ea..a9bec7b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -16,6 +16,10 @@ boot.loader.grub.device = "/dev/sda"; boot.loader.efi.canTouchEfiVariables = true; + # bluetooth support + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = true; + services.blueman.enable = true; # VBox only # fsck will fail under vbox and cause a boot to hang, so turn it off boot.initrd.checkJournalingFS = false;