commit 80a816797ec05c15998c2a6bd1c17f4c13988950
parent 8bbe244f72a5ba08d1d2bfe24fe34d60e3069a8d
Author: Crazazy <crazazy@tilde.cafe>
Date: Mon, 25 Jul 2022 22:16:47 +0200
add bluetooth support
Diffstat:
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/nixos.org b/nixos.org
@@ -31,6 +31,15 @@ stuff
#+begin_src nix
./hardware-configuration.nix
#+end_src
+ Also i want to have a full bluetooth experience
+ #+begin_src nix
+ {
+ hardware.bluetooth = {
+ enable = true;
+ package = pkgs.bluezFull;
+ };
+ }
+ #+end_src
** personal stuff
First, some personal stuff, so that I can tel people my computer is mine
#+begin_src nix