depot/third_party/home-manager/tests/modules/systemd/timers.nix
Default email 72904c318c Project import generated by Copybara.
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
2020-10-11 17:22:58 -07:00

25 lines
547 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
systemd.user.timers.test-timer = {
Unit = { Description = "A basic test timer"; };
Timer = { OnUnitActiveSec = "1h 30m"; };
Install = { WantedBy = [ "timers.target" ]; };
};
nmt.script = ''
unitDir=home-files/.config/systemd/user
timerFile=$unitDir/test-timer.timer
assertFileExists $timerFile
assertFileContent $timerFile ${./timers-expected.conf}
assertFileExists $unitDir/timers.target.wants/test-timer.timer
'';
};
}