Created
July 23, 2024 23:36
-
-
Save aabccd021/2afc001bf8e1cb4cd8878e0a183bb5cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs, username, ... }: | |
{ | |
# https://nixos.wiki/wiki/Bluetooth#Pairing_Bluetooth_devices | |
services.blueman.enable = true; | |
# https://nixos.wiki/wiki/Bluetooth#Enabling_Bluetooth_support | |
hardware.bluetooth.enable = true; | |
home-manager.users.${username}.home.packages = with pkgs;[ bluetuith ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment