nixfiles/hosts/raspberry/services/btattach.nix

12 lines
289 B
Nix
Raw Normal View History

2022-01-24 21:18:03 +00:00
{ pkgs, ... }: {
systemd.services.btattach = {
before = [ "bluetooth.service" ];
after = [ "dev-ttyAMA0.device" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart =
"${pkgs.bluez}/bin/btattach -B /dev/ttyS1 -P bcm -S 3000000";
};
};
}