17 lines
459 B
Nix
17 lines
459 B
Nix
{ config, ... }: {
|
|
sops.secrets.intray_password.sopsFile = ./secrets.yaml;
|
|
|
|
programs.intray = {
|
|
enable = true;
|
|
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";
|
|
};
|
|
};
|
|
}
|