Added bluetooth support to PC

This commit is contained in:
Emile Clark-Boman 2025-07-10 23:47:59 +10:00
parent 142dad8f68
commit 4b03d162c7

View file

@ -7,7 +7,7 @@
}: let }: let
home-manager = builtins.fetchTarball { home-manager = builtins.fetchTarball {
url = "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz"; url = "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
sha256 = "1dga3vsd60v9mfyhwgbil13mrchw5crbpgh4zjw9fghv1vyk89vq"; sha256 = "1mwq9mzyw1al03z4q2ifbp6d0f0sx9f128xxazwrm62z0rcgv4na";
}; };
in { in {
imports = [ imports = [
@ -200,6 +200,7 @@ in {
easyeffects easyeffects
pavucontrol pavucontrol
ani-cli ani-cli
bluetui
wl-clipboard # clipboard for wayland wl-clipboard # clipboard for wayland
hyprpicker hyprpicker
@ -384,6 +385,11 @@ in {
# Enable OpenGL # Enable OpenGL
hardware = { hardware = {
graphics.enable = true; graphics.enable = true;
bluetooth = {
enable = true;
powerOnBoot = true;
};
}; };
# DO NOT MODIFY # DO NOT MODIFY