Added bluetooth support

This commit is contained in:
xeovalyte 2024-03-14 22:46:49 +01:00
parent 37d76d2fae
commit 9d934145f1
No known key found for this signature in database
6 changed files with 29 additions and 0 deletions

View File

@ -5,6 +5,7 @@
./hardware-configuration.nix
../../modules/system/desktop/amd.nix
../../modules/system/desktop/hyprland.nix
../../modules/system/desktop/bluetooth.nix
../../modules/system/programs/syncthing.nix
../../modules/system/programs/thunar.nix
../../modules/system/programs/virtualization.nix

View File

@ -7,6 +7,7 @@
./hyprlock.nix
./fixes.nix
./hypridle.nix
./dunst.nix
];
home.packages = with pkgs; [
@ -30,6 +31,7 @@
exec-once = [
"waybar"
"hyprpaper"
"lxqt-policykit-agent"
];
"$mod" = "SUPER";

View File

@ -0,0 +1,7 @@
{ ... }:
{
services.dunst = {
enable = true;
};
}

View File

@ -10,5 +10,6 @@
webcord
unstable.localsend
bitwarden
pavucontrol
];
}

View File

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
hardware.pulseaudio.enable = true;
services.blueman.enable = true;
}

View File

@ -27,6 +27,8 @@
pulse.enable = true;
};
security.polkit.enable = true;
# Configure networking
networking.networkmanager.enable = true;
networking.wireless.iwd.enable = true;