summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrazazy2022-07-25 22:16:47 +0200
committerCrazazy2022-07-25 22:16:47 +0200
commit80a816797ec05c15998c2a6bd1c17f4c13988950 (patch)
tree7aff7c59280dcf470f191931425cfc36dfc068e7
parent8bbe244f72a5ba08d1d2bfe24fe34d60e3069a8d (diff)
add bluetooth support
-rw-r--r--nixos.org9
1 files changed, 9 insertions, 0 deletions
diff --git a/nixos.org b/nixos.org
index beb67a4..a6de2cd 100644
--- 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