nixos-configs/configurations/servivi/modules/pr-tracker/default.nix
matt1432 8326399b80
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: move machine specific modules inside subdirs
2025-01-17 14:46:47 -05:00

14 lines
238 B
Nix

{
config,
pr-tracker,
...
}: {
imports = [pr-tracker.nixosModules.default];
services.pr-tracker = {
enable = true;
userAgent = "matt\'s pr-tracker";
githubApiTokenFile = config.sops.secrets.pr-tracker.path;
};
}