From 1ba66868bef91b3530f3c61e9ae6d9898dcd841b Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Wed, 17 Jan 2024 15:37:48 +0700 Subject: [PATCH] system/bluetooth: init --- modules/default.nix | 1 + modules/system/bluetooth.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 modules/system/bluetooth.nix diff --git a/modules/default.nix b/modules/default.nix index bc442dc..60cea74 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -27,6 +27,7 @@ in { system = mkAttrsFromPaths [ ./system/audio.nix ./system/base.nix + ./system/bluetooth.nix ./system/ccache.nix ./system/corectrl.nix ./system/flatpak.nix diff --git a/modules/system/bluetooth.nix b/modules/system/bluetooth.nix new file mode 100644 index 0000000..1e2a72e --- /dev/null +++ b/modules/system/bluetooth.nix @@ -0,0 +1,6 @@ +{ ... }: { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; +}