feat: enable bluetooth

main
mandlm 2024-07-12 20:49:18 +02:00
parent db50faa843
commit 497d37c36a
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,15 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
networking.hostName = "xps";
boot.loader.grub.enableCryptodisk = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
# battery level reporting
settings.General.Experimental = true;
};
}