mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
11 lines
315 B
Nix
11 lines
315 B
Nix
{
|
|
services.protonmail-bridge.enable = true;
|
|
|
|
nmt.script = ''
|
|
local service="home-files/.config/systemd/user/protonmail-bridge.service"
|
|
|
|
assertFileExists $service
|
|
assertFileNotRegex $service 'Environment=PATH=.*'
|
|
assertFileRegex $service 'ExecStart=.*/protonmail-bridge --noninteractive'
|
|
'';
|
|
}
|