Stargate bluetooth partial fix

This commit is contained in:
Aleksandr Lebedev 2025-10-10 19:23:44 +02:00
parent 7d407bbd0b
commit 5e118b4063
2 changed files with 10 additions and 1 deletions

View file

@ -108,9 +108,16 @@ in {
};
custom.presets.default = enabled;
custom.hardware.secureBoot = enabled;
hardware.bluetooth.enable = mkForce false;
custom.hardware.bluetooth.enable = true;
custom.impermanence = enabled;
hardware.enableAllHardware = true;
hardware.enableAllFirmware = true;
boot.kernelModules = [
# get wifi drivers to work for Realtek Wifi RTL8852CE
"rtw89_8852ce"
];
custom.users.kylekrein = {
enable = true;
config = {};

View file

@ -12,6 +12,7 @@
"met"
"radio_browser"
"wiz"
"thermopro"
];
config = {
http = {
@ -48,4 +49,5 @@
}
];
};
users.users.hass.extraGroups = ["bluetooth"];
}