Files
nix/hosts/common/system/configs/bluetooth/default.nix
2024-07-08 20:01:55 +03:00

12 lines
214 B
Nix

{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General.Experimental = true;
};
};
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
}