nixfiles/hosts/raspberry/services/btattach.nix
ChaotiCryptidz 07e3d5b586 steam
2022-01-24 21:18:03 +00:00

12 lines
289 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";
};
};
}