This commit is contained in:
Bryan Ramos 2024-01-28 10:31:18 -05:00
parent 70dba827e8
commit 83e520b115
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8

View file

@ -15,5 +15,21 @@ in
electrum
bisq-desktop
];
systemd.user.services.trezord = {
Unit = {
Description = "Trezor Bridge";
After = [ "network.target" ];
Wants = [ "network.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.trezord}/bin/trezord";
Restart = "always";
};
Install = {
WantedBy = [ "default.target" ];
};
};
};
}