mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
15 lines
361 B
Nix
15 lines
361 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
services.status_cloud = {
|
|
enable = true;
|
|
config_path = "/home/nixolas/nextcloud_integrations.toml";
|
|
frequency = 15;
|
|
};
|
|
services.chrono_track = {
|
|
enable = true;
|
|
from_address = ''"NoReply <noreply@nickiel.net>"'';
|
|
config_path = "/home/nixolas/nextcloud_testing.toml";
|
|
frequency = 5;
|
|
};
|
|
}
|