about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-10-24 08:03:19 +0000
committerAlyssa Ross <hi@alyssa.is>2023-02-08 13:46:02 +0000
commit93360ad70ec141d9481f716a1dbfb2365e54550b (patch)
tree72378b0f9a204970eaa2fe5f15f39f07f84e970c
parent0b0862fe38384219fca922ed5e1aef8d5dfdb809 (diff)
downloadnixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.tar
nixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.tar.gz
nixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.tar.bz2
nixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.tar.lz
nixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.tar.xz
nixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.tar.zst
nixlib-93360ad70ec141d9481f716a1dbfb2365e54550b.zip
sys/x220: enable bluetooth
-rw-r--r--modules/workstation/hardware/bluetooth/default.nix5
-rw-r--r--sys/x220.nix1
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/workstation/hardware/bluetooth/default.nix b/modules/workstation/hardware/bluetooth/default.nix
new file mode 100644
index 000000000000..fb6a06a03e5f
--- /dev/null
+++ b/modules/workstation/hardware/bluetooth/default.nix
@@ -0,0 +1,5 @@
+{ ... }:
+
+{
+  hardware.bluetooth.enable = true;
+}
diff --git a/sys/x220.nix b/sys/x220.nix
index 0eaacd528617..ed2316ce9835 100644
--- a/sys/x220.nix
+++ b/sys/x220.nix
@@ -3,6 +3,7 @@
 {
   imports = [
     ../modules/nixos-hardware/lenovo/thinkpad/x220
+    ../modules/workstation/hardware/bluetooth
     ../modules/workstation/physical
   ];