mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
15 lines
348 B
Nix
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
|
||
|
'';
|
||
|
}
|