nixfiles/hosts/raspberry/services/btattach.nix
ChaotiCryptidz 66092dd42c format
2022-01-25 13:01:22 +00:00

11 lines
281 B
Nix

{ 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";
};
};
}