1
Fork 0
satellite/home/features/cli/productivity/intray.nix

17 lines
459 B
Nix
Raw Normal View History

{ config, ... }: {
sops.secrets.intray_password.sopsFile = ./secrets.yaml;
2023-09-04 04:58:39 +02:00
programs.intray = {
enable = true;
2023-12-12 14:32:06 +01:00
data-dir = "/persist/state/home/adrielus/intray";
cache-dir = "/persist/local/cache/home/adrielus/intray";
config.sync = "AlwaysSync";
sync = {
enable = true;
username = "prescientmoon";
password-file = config.sops.secrets.intray_password.path;
url = "https://api.intray.moonythm.dev";
};
2023-09-04 04:58:39 +02:00
};
}