1
Fork 0
satellite/home/features/cli/productivity/smos/default.nix

24 lines
434 B
Nix
Raw Normal View History

2023-09-05 19:59:37 +02:00
{ config, ... }: {
programs.smos = {
enable = true;
notify = {
enable = true;
};
github = {
enable = true;
oauth-token-file = config.homeage.file.smos.path;
};
};
satellite.persistence.at.data.apps.smos.directories = [
config.programs.smos.workflowDir
];
homeage.file.smos = {
source = ./smos_github_oauth.age;
path = "${config.xdg.dataHome}/smos/.github_token";
};
}