1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/activitywatch/empty-server-settings.nix
2024-03-15 09:39:56 +01:00

15 lines
348 B
Nix

{ ... }:
{
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
'';
}