Setup bluetooth

This commit is contained in:
Emmet 2023-10-06 16:12:24 -05:00
parent c0afbb94f1
commit 9002e4f5cc
2 changed files with 11 additions and 0 deletions

View file

@ -26,6 +26,7 @@
../../user/lang/cc/cc.nix # C and C++ tools ../../user/lang/cc/cc.nix # C and C++ tools
../../user/lang/godot/godot.nix # Game development ../../user/lang/godot/godot.nix # Game development
../../user/pkgs/blockbench.nix # Blockbench ../../user/pkgs/blockbench.nix # Blockbench
../../user/hardware/bluetooth.nix # Bluetooth
]; ];
home.stateVersion = "22.11"; # Please read the comment before changing. home.stateVersion = "22.11"; # Please read the comment before changing.

View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
blueman
];
services = {
blueman-applet.enable = true;
};
}