From 537deded95deb9380e4fa69481e1cfdf85816720 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 10 May 2023 20:25:48 +0300 Subject: [PATCH] Add bluetooth --- machines/asus/system/bluetooth.nix | 5 +++++ machines/asus/system/default.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 machines/asus/system/bluetooth.nix diff --git a/machines/asus/system/bluetooth.nix b/machines/asus/system/bluetooth.nix new file mode 100644 index 0000000..fb6a06a --- /dev/null +++ b/machines/asus/system/bluetooth.nix @@ -0,0 +1,5 @@ +{ ... }: + +{ + hardware.bluetooth.enable = true; +} diff --git a/machines/asus/system/default.nix b/machines/asus/system/default.nix index 7a4cc3a..b64097c 100644 --- a/machines/asus/system/default.nix +++ b/machines/asus/system/default.nix @@ -2,6 +2,7 @@ { imports = [ + ./bluetooth.nix ./boot.nix ./filesystem.nix ./localisation.nix