From e8d1371ae88299899a0b35b9e4ace9b8790edf47 Mon Sep 17 00:00:00 2001 From: Andrey0189 Date: Wed, 17 Apr 2024 08:15:16 +0500 Subject: Bluetooth --- nixos/modules/bluetooth.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nixos/modules/bluetooth.nix (limited to 'nixos/modules/bluetooth.nix') diff --git a/nixos/modules/bluetooth.nix b/nixos/modules/bluetooth.nix new file mode 100644 index 0000000..6c6a5df --- /dev/null +++ b/nixos/modules/bluetooth.nix @@ -0,0 +1,14 @@ +{ + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + Enable = "Source,Sink,Media,Socket"; + Experimental = true; + }; + }; + }; + + services.blueman.enable = true; +} -- cgit v1.2.3