1
0
mirror of https://github.com/nix-community/home-manager synced 2024-08-19 18:46:30 +02:00
home-manager/tests/modules/services/activitywatch/empty-server-settings.nix

15 lines
348 B
Nix
Raw Normal View History

2023-08-04 13:56:37 +02:00
{ ... }:
{
services.activitywatch.enable = true;
test.stubs.activitywatch = { };
nmt.script = ''
assertFileExists home-files/.config/systemd/user/activitywatch.service
assertFileExists home-files/.config/systemd/user/activitywatch.target
assertPathNotExists home-files/.config/activitywatch/aw-server-rust/config.toml
'';
}