mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
Updated README
This commit is contained in:
parent
83e520b115
commit
21bfd793d4
2 changed files with 19 additions and 15 deletions
|
|
@ -16,19 +16,21 @@ in
|
|||
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" ];
|
||||
systemd.user.services = {
|
||||
trezord = {
|
||||
Unit = {
|
||||
Description = "Trezor Bridge";
|
||||
After = [ "network.target" ];
|
||||
Wants = [ "network.target" ];
|
||||
PartOf = [ "graphical-session.target" ];
|
||||
};
|
||||
Service = {
|
||||
ExecStart = "${pkgs.trezord}/bin/trezord-go";
|
||||
Restart = "always";
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "default.target" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue