Benjamin Yule Bädorf
52bbd13a24
* Use mako home-manager module * Use nextcloud-client home-manager module * Urgent notifications go above fullscreen apps * Add battery check with libnotify * Increase waybar text sizing
10 lines
158 B
Nix
10 lines
158 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.cron = {
|
|
enable = true;
|
|
systemCronJobs = [
|
|
"*/5 * * * * root ${pkgs.check-battery}/bin/check-battery"
|
|
];
|
|
};
|
|
}
|