nixfiles/hosts/raspberry/services/btattach.nix

11 lines
281 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 = {
2022-01-25 13:01:22 +00:00
ExecStart = "${pkgs.bluez}/bin/btattach -B /dev/ttyS1 -P bcm -S 3000000";
2022-01-24 21:18:03 +00:00
};
};
}