From da9d503353fa2b7b6741c34a0d3bd723e50f0e8d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Tue, 18 Jun 2024 16:20:25 +0200 Subject: [PATCH] chore: adds bluetooth --- modules/home/bluetooth.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/home/bluetooth.nix diff --git a/modules/home/bluetooth.nix b/modules/home/bluetooth.nix new file mode 100644 index 0000000..62df0fc --- /dev/null +++ b/modules/home/bluetooth.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: +{ + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; +}