os/modules/portable/default.nix
Benjamin Yule Bädorf 52bbd13a24
graphical: various improvements
* 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
2024-03-26 23:58:04 +01:00

10 lines
158 B
Nix

{ pkgs, ... }:
{
services.cron = {
enable = true;
systemCronJobs = [
"*/5 * * * * root ${pkgs.check-battery}/bin/check-battery"
];
};
}