diff --git a/modules/nixos/core-desktop.nix b/modules/nixos/core-desktop.nix index 2d2242f3..68075457 100644 --- a/modules/nixos/core-desktop.nix +++ b/modules/nixos/core-desktop.nix @@ -156,6 +156,21 @@ # Disable pulseaudio, it conflicts with pipewire too. hardware.pulseaudio.enable = false; + # enable bluetooth & gui paring tools - blueman + # or you can use cli: + # $ bluetoothctl + # [bluetooth] # power on + # [bluetooth] # agent on + # [bluetooth] # default-agent + # [bluetooth] # scan on + # ...put device in pairing mode and wait [hex-address] to appear here... + # [bluetooth] # pair [hex-address] + # [bluetooth] # connect [hex-address] + # Bluetooth devices automatically connect with bluetoothctl as well: + # [bluetooth] # trust [hex-address] + hardware.bluetooth.enable = true; + services.blueman.enable = true; + # https://flatpak.org/setup/NixOS services.flatpak.enable = true;