From 58ab433029547262d84290ddb6c00625d817dc53 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Thu, 11 Dec 2025 18:12:52 +0200 Subject: [PATCH] feat: bluetooth --- modules/bluetooth.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/bluetooth.nix diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix new file mode 100644 index 0000000..df4e5e1 --- /dev/null +++ b/modules/bluetooth.nix @@ -0,0 +1,18 @@ +{ + flake.modules.nixos.bluetooth = {pkgs, ...}: { + environment.systemPackages = [ + pkgs.bluetui + ]; + + security.rtkit.enable = true; + + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; + }; + + flake.modules.homeManager.bluetooth = {...}: { + services.mpris-proxy.enable = true; + }; +} -- 2.44.1