feat: enable bluetooth
This commit is contained in:
parent
db50faa843
commit
497d37c36a
1 changed files with 9 additions and 1 deletions
|
@ -1,7 +1,15 @@
|
||||||
{ config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
networking.hostName = "xps";
|
networking.hostName = "xps";
|
||||||
boot.loader.grub.enableCryptodisk = true;
|
boot.loader.grub.enableCryptodisk = true;
|
||||||
|
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
powerOnBoot = true;
|
||||||
|
|
||||||
|
# battery level reporting
|
||||||
|
settings.General.Experimental = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue