2024-11-04 22:41:38 -05:00
|
|
|
{ lib, config, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-11-04 22:41:38 -05:00
|
|
|
config = lib.mkIf config.system.desktop.enable {
|
|
|
|
hardware.bluetooth = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
General.Experimental = "true";
|
|
|
|
Policy.AutoEnable = "true";
|
|
|
|
};
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
2024-11-03 06:57:03 -05:00
|
|
|
|
2024-11-04 22:41:38 -05:00
|
|
|
systemd.tmpfiles.rules = [ "f /var/lib/systemd/linger/jimbo" ];
|
|
|
|
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
|
|
|
|
};
|
2024-08-24 22:16:51 -04:00
|
|
|
}
|