mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
Final
This commit is contained in:
parent
70dba827e8
commit
83e520b115
1 changed files with 16 additions and 0 deletions
|
|
@ -15,5 +15,21 @@ in
|
||||||
electrum
|
electrum
|
||||||
bisq-desktop
|
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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue