From 734b043bc77cefa5eda3ca14e00b73cf48625bf2 Mon Sep 17 00:00:00 2001 From: Toast Date: Mon, 30 Oct 2023 11:25:26 +0100 Subject: [PATCH] SteamDeck: enable bluetooth --- machines/SteamDeck/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/machines/SteamDeck/configuration.nix b/machines/SteamDeck/configuration.nix index 3d4ba77..5ff2b4a 100755 --- a/machines/SteamDeck/configuration.nix +++ b/machines/SteamDeck/configuration.nix @@ -51,6 +51,11 @@ }; services.xserver.displayManager.sddm.enable = lib.mkForce false; + # Enable bluetooth + hardware.bluetooth = { + enable = true; + }; + # Configure keymap in X11 # services.xserver.layout = "us"; # services.xserver.xkbOptions = "eurosign:e,caps:escape";