mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
14 lines
234 B
Nix
14 lines
234 B
Nix
{
|
|
config = {
|
|
services.caffeine = {
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/caffeine.service \
|
|
${./basic-service-expected.service}
|
|
'';
|
|
};
|
|
}
|