Added bluetooth

This commit is contained in:
Alexandre 2026-03-05 22:23:09 +01:00
parent 679f33aa0d
commit 86532363a8
3 changed files with 16 additions and 0 deletions

View File

@ -9,6 +9,7 @@ in
modules.nixos.secureboot
modules.common.module
modules.nixos.secrets
modules.nixos.desktop.bluetooth
modules.nixos.gaming.amd
modules.nixos.gaming.starCitizen
modules.nixos.gaming.steam

View File

@ -26,6 +26,7 @@
desktop = {
lightDM = ./nixos/desktop/lightDM.nix;
xfce = ./nixos/desktop/xfce.nix;
bluetooth = ./nixos/desktop/bluetooth.nix;
};
gaming = {
amd = ./nixos/gaming/amd.nix;

View File

@ -0,0 +1,14 @@
{
hardware.bluetooth = {
enable = true;
settings = {
General = {
Experimental = true;
};
Policy = {
AutoEnable = true;
};
}:
};
}