From 6418806a6f60b2a0f3da43b66196d0ed37e0f069 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sun, 16 Mar 2025 09:02:27 +0800 Subject: [PATCH] feat: add bluetooth support' --- systems/modules/hardware/bluetooth.nix | 6 ++++++ systems/nemesis.nix | 1 + 2 files changed, 7 insertions(+) create mode 100644 systems/modules/hardware/bluetooth.nix diff --git a/systems/modules/hardware/bluetooth.nix b/systems/modules/hardware/bluetooth.nix new file mode 100644 index 0000000..1b6e38b --- /dev/null +++ b/systems/modules/hardware/bluetooth.nix @@ -0,0 +1,6 @@ +{ + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; +} diff --git a/systems/nemesis.nix b/systems/nemesis.nix index 4063de4..c6ec88e 100644 --- a/systems/nemesis.nix +++ b/systems/nemesis.nix @@ -5,6 +5,7 @@ ./modules/desktop.nix ./modules/bootloaders/systemd-boot.nix ./modules/hardware/nvidia.nix + ./modules/hardware/bluetooth.nix ]; networking.hostName = "nemesis";