diff --git a/profiles/work/home.nix b/profiles/work/home.nix index 627555d..93e8348 100644 --- a/profiles/work/home.nix +++ b/profiles/work/home.nix @@ -26,6 +26,7 @@ ../../user/lang/cc/cc.nix # C and C++ tools ../../user/lang/godot/godot.nix # Game development ../../user/pkgs/blockbench.nix # Blockbench + ../../user/hardware/bluetooth.nix # Bluetooth ]; home.stateVersion = "22.11"; # Please read the comment before changing. diff --git a/user/hardware/bluetooth.nix b/user/hardware/bluetooth.nix new file mode 100644 index 0000000..77dd6d9 --- /dev/null +++ b/user/hardware/bluetooth.nix @@ -0,0 +1,10 @@ +{ config, lib, pkgs, ... }: + +{ + home.packages = with pkgs; [ + blueman + ]; + services = { + blueman-applet.enable = true; + }; +}