blob: 8bdf802b9c6bbdf2d2fff9e4292afb584e1644a1 [file] [log] [blame]
Skyler Grey6e29bf52022-10-31 00:35:48 +00001{
2 config = {
3 hardware.bluetooth.enable = true;
Skyler Grey0d994982023-03-07 13:13:12 +00004 hardware.bluetooth.settings = {
5 General.Experimental = true;
6 };
Skyler Grey6e29bf52022-10-31 00:35:48 +00007 environment.persistence."/nix/persist".directories = [ "/var/lib/bluetooth" ];
8 };
Skyler Grey684ed132023-03-26 10:45:48 +00009 home = {
10 home.file.".config/prelaunch/bluetooth-reconnect.sh".text = ''
11 bluetoothctl connect E8:EE:CC:04:84:5F
12 '';
13 home.file.".config/prelaunch/bluetooth-reconnect.sh".executable = true;
14 };
Skyler Grey6e29bf52022-10-31 00:35:48 +000015}