mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
14 lines
305 B
Nix
14 lines
305 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
services.status_cloud = {
|
|
enable = true;
|
|
config_path = "/home/nixolas/nextcloud_integrations.toml";
|
|
frequency = 15;
|
|
};
|
|
services.time_tracker = {
|
|
enable = true;
|
|
config_path = "/home/nixolas/nextcloud_testing.toml";
|
|
frequency = 5;
|
|
};
|
|
}
|