nicks-nix-config/hosts/Alaska/modules/nicks_nextcould_integrations.nix

16 lines
369 B
Nix
Raw Permalink Normal View History

2023-08-25 20:26:33 -07:00
{ config, lib, pkgs, inputs, ... }:
{
services.status_cloud = {
2023-12-03 14:51:52 -08:00
enable = false;
2023-08-25 20:26:33 -07:00
config_path = "/home/nixolas/nextcloud_integrations.toml";
2023-08-26 08:56:17 -07:00
frequency = 15;
2023-08-25 20:26:33 -07:00
};
2023-09-11 18:11:24 -07:00
services.chrono_track = {
2023-09-09 19:12:11 -07:00
enable = true;
2023-12-26 09:31:26 -08:00
from_address = ''"NoReply <nickiel.is.a.dev@gmail.com>"'';
2023-09-09 19:12:11 -07:00
config_path = "/home/nixolas/nextcloud_testing.toml";
2023-09-09 18:23:40 -07:00
frequency = 5;
};
2023-08-25 20:26:33 -07:00
}