aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs (unfollow)
Commit message (Collapse)Author
2025-05-05modules/atuin-sync: InitBenedikt Peetz
2025-04-28pkgs/sharkey: 2025.2.2 -> 2025.2.3Benedikt Peetz
There is no change log, as this is a security update.
2025-04-23pkgs/stalwart-mail-free: Update package hash, as it changedBenedikt Peetz
This has to do with the underlying stalwart-mail update.
2025-04-22pkgs/sharkey: InitBenedikt Peetz
This is largely based on: https://github.com/sodiboo/system/blob/b63c7b27f49043e8701b3ff5e1441cd27d5a2fff/sharkey/package.nix
2025-03-09pkgs/back/package.nix: Include the html templates in the build sourceBenedikt Peetz
2025-03-09pkgs/back/config: Also try to open a repo if a directory with `.git` existsBenedikt Peetz
2025-03-09pkgs/back: Do not store repositories in configBenedikt Peetz
Otherwise, back will need to be restarted every time a new repository is added or removed.
2025-03-09pkgs/back/assets/style.css: Format with prettierBenedikt Peetz
2025-03-09pkgs/back/README.md: Update to reflect current statusBenedikt Peetz
2025-03-09pkgs/back: Support listing all repos via the `/` pathBenedikt Peetz
This change required porting all webhandling from rocket to hyper, because we needed fine grained control over the path the user requested. This should also improve the memory and resources footprint because hyper is more lower level. I also changed all of the templates from `format!()` calls to a real templating language because I needed to touch most code paths anyway.
2025-03-09pkgs/fetchmail-common-name: Patch fetchmail to accept certificates without ↵Benedikt Peetz
common name Pebble gives you SAN only certificates.
2025-03-09pkgs/stalwart-mail-free: Avoid running `stalwart-mail`'s testsBenedikt Peetz
2025-03-09pkgs/stalwart-mail-free: Update `cargoHash`Benedikt Peetz
2025-03-09pkgs/stalwart-mail-free: Also patch to use the platform CA storeBenedikt Peetz
This is needed for the test. The general changes are caused by the requirement to update the `chargoHash`, which currently only works with this counter intuitive attribute overriding.
2025-03-09modules/stalwart-mail: Move the package to the `pkgs` subtreeBenedikt Peetz
2025-03-07pkgs/back/update.sh: Don't worry about incompatible semver changesBenedikt Peetz
`back` is usually not big enough to be affected by semver incompatible changes. (And if it's affected, fixing it is usually really simple.)
2025-03-07pkgs/back/.envrc: Stop fetching when loading the shellBenedikt Peetz
2025-03-07treewide: UpdateBenedikt Peetz
2024-12-31feat(pkgs/back): add comments to rss feedSilas Schöffel
2024-12-31fix(pkgs/back/contrib/config.json): add root_urlSilas Schöffel
2024-12-27fix(back): add correct links to rss feedBenedikt Peetz
Co-authored-by: Silas Schöffel <sils@sils.li>
2024-12-27feat(back): add rss feedBenedikt Peetz
Co-authored-by: Silas Schöffel <sils@sils.li>
2024-12-27feat(back/src/issues/issue): implement Display for AuthorBenedikt Peetz
Co-authored-by: Silas Schöffel <sils@sils.li>
2024-12-26fix(pkgs/back): Use the errors display trait not debugBenedikt Peetz
Sadly, there seems to be no other way to change the error display, than wrapping main.
2024-12-26chore(pkgs/back): Add missing license headersBenedikt Peetz
2024-12-26fix(pkgs/back): Sort the issues by descending dateBenedikt Peetz
2024-12-26feat(pkgs/back): Rewrite the `git-bug` interface codeBenedikt Peetz
The previous code was more or less reverse engineered, whilst this code is based on the actually git-bug source code. This improves the whole issue and operation handling immensely and also makes the code better maintainable. Furthermore, it also adds support for the operations that had not already used in `vhack.eu/nixos-server.git`.
2024-12-26fix(pkgs/back): Use rocket to manage the configuration valuesBenedikt Peetz
This reduces the amount of needed `unwraps`/`expects` and allows us to streamline the parsing processes.
2024-12-24docs(pkgs/back): Document useful environment variablesBenedikt Peetz
2024-12-24feat(pkgs/back): Add a link to the source codeBenedikt Peetz
This is required by the AGPL license and should probably also be done, because we do not have a reason to hide or obfuscate the code.
2024-12-24build(pkgs/back): Apply source filteringBenedikt Peetz
This avoids useless rebuilds, just because files like the `README.md` changed.
2024-12-24docs(pkgs/back): Add note about needed write accessBenedikt Peetz
2024-12-24fix(pkgs/back): Set `meta.mainProgram`Benedikt Peetz
2024-12-23style(treewide): FormatBenedikt Peetz
2024-12-23feat(pkgs): Hook up to the flake and add needed infrastructureBenedikt Peetz
2024-12-23feat(pkgs/back): InitBenedikt Peetz
Other options, for example `git-bug webui --read-only` is just to bugged to be useful.