From dbdfd1924dee4457c06f01cd86aae4a97edb6e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Czy=C5=BC?= Date: Wed, 24 Apr 2024 11:26:05 +0200 Subject: [PATCH] thor bluetooth --- hosts/thor/bluetooth.nix | 21 +++++++++++++++++++++ hosts/thor/configuration.nix | 1 + 2 files changed, 22 insertions(+) create mode 100644 hosts/thor/bluetooth.nix diff --git a/hosts/thor/bluetooth.nix b/hosts/thor/bluetooth.nix new file mode 100644 index 0000000..b3e0b25 --- /dev/null +++ b/hosts/thor/bluetooth.nix @@ -0,0 +1,21 @@ +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + settings = { + General = { + Experimental = true; + }; + }; + }; + + services.blueman.enable = true; + +} diff --git a/hosts/thor/configuration.nix b/hosts/thor/configuration.nix index d50ec5f..42aea96 100644 --- a/hosts/thor/configuration.nix +++ b/hosts/thor/configuration.nix @@ -22,6 +22,7 @@ # ./users.nix ../common ./gui.nix + ./bluetooth.nix # Import your generated (nixos-generate-config) hardware configuration ./hardware-configuration.nix