From 7d2a4e908b59dc14b39ed28306809f6d440d8742 Mon Sep 17 00:00:00 2001 From: Odweta Date: Sun, 11 Jan 2026 19:35:44 +0100 Subject: [PATCH] bluetooth --- bluetooth.nix | 7 +++++++ flake.nix | 1 + 2 files changed, 8 insertions(+) create mode 100644 bluetooth.nix diff --git a/bluetooth.nix b/bluetooth.nix new file mode 100644 index 0000000..6c1ec63 --- /dev/null +++ b/bluetooth.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + # Enable Bluetooth + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = false; +} diff --git a/flake.nix b/flake.nix index 238b31f..d7244a7 100644 --- a/flake.nix +++ b/flake.nix @@ -16,6 +16,7 @@ system = "x86_64-linux"; modules = [ ./audio.nix + ./bluetooth.nix ./boot.nix ./display-manager.nix ./env-vars.nix