A simple github notification daemon
- Polls GitHub notifications
- Integrates with Home Manager
gh-notify-daemon = {
url = "git+https://git.kybe.xyz/2kybe3/gh-notify-daemon";
inputs.nixpkgs.follows = "nixpkgs";
};modules = [
inputs.gh-notify-daemon.homeManagerModules.gh-notify-daemon
./home
];{self,config,...}:{
sops.secrets.gh-notify-daemon = {
sopsFile = "${self}/secrets/gh-notify-daemon.yaml";
key = "token";
};
gh-notify-daemon = {
enable = true;
secretFile = config.sops.secrets.gh-notify-daemon.path;
};
}