aboutsummaryrefslogtreecommitdiffstats
path: root/modules/system/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/system/bluetooth/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/system/bluetooth/default.nix b/modules/system/bluetooth/default.nix
new file mode 100644
index 00000000..bf1c6a90
--- /dev/null
+++ b/modules/system/bluetooth/default.nix
@@ -0,0 +1,20 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.soispha.bluetooth;
+in {
+ options.soispha.bluetooth = {
+ enable = lib.mkEnableOption "an integrated bluetooth setup.";
+ };
+
+ config = lib.mkIf cfg.enable {
+ hardware = {
+ bluetooth = {
+ enable = true;
+ powerOnBoot = !config.soispha.laptop.enable;
+ };
+ };
+ };
+}