system: Add bluetooth service configuration

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2023-10-12 20:23:34 +02:00
parent 0dea15f058
commit 7c5f063f51
Signed by: c8h4
GPG key ID: 6817E9C75C0785D7
2 changed files with 11 additions and 0 deletions

View file

@ -5,6 +5,7 @@ let
in {
imports = [
"${nixosHardware}/framework/12th-gen-intel"
../system/bluetooth.nix
../system/desktop.nix
../system/laptop.nix
../system/printing.nix

10
system/bluetooth.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ bluez bluetuith ];
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
}