about summary refs log tree commit diff
path: root/nixos/tests/miniflux.nix
AgeCommit message (Collapse)AuthorFilesLines
2024-03-30nixos/postgresql: turn `settings` into a submoduleMaximilian Bosch1-1/+1
The main idea behind that was to be able to do more sophisticated merging for stuff that goes into `postgresql.conf`: `shared_preload_libraries` is a comma-separated list in a `types.str` and thus not mergeable. With this change, the option accepts both a comma-separated string xor a list of strings. This can be implemented rather quick using `coercedTo` + freeform modules. The interface still behaves equally, but it allows to merge declarations for this option together. One side-effect was that I had to change the `attrsOf (oneOf ...)` part into a submodule to allow declaring options for certain things. While at it, I decided to move `log_line_prefix` and `port` into this structure as well.
2024-03-04nixos/tests/miniflux: add test for external databaseSophie Tauchert1-1/+46
2024-02-15nixos/tests/miniflux: move common test script into function for less repetitionSophie Tauchert1-23/+12
2023-07-13nixos/miniflux: add apparmor policyPhilipp Bartsch1-0/+6
This change also extends the test to ensure that normal operations aren't denied.
2023-05-12nixos/tests/miniflux.nix: get rid of `with lib`Anderson Torres1-2/+1
2022-01-31nixos/miniflux: no cleartext password in the storeGuillaume Girol1-6/+18
2021-09-08maintainers: remove bricewgeBrice Waegeneire1-1/+1
So long, and thanks for all the fish!
2021-06-05nixosTests.*: Don't use the `-q` flag with grep when used with curltalyz1-6/+6
The `-q` flag makes grep close the pipe early, which curl doesn't handle gracefully, but exits with an error like "(23) Failed writing body".
2021-01-28nixos/miniflux: don't depend on sudoMatías Lang1-0/+14
The miniflux service should work when sudo is not available in the system.
2021-01-10treewide: simplify pkgs.stdenv.lib -> pkgs.libDominik Xaver Hörl1-1/+1
The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
2019-11-22nixos/miniflux: port test to pythonJan Hrnko1-10/+14
2019-04-06miniflux: add serviceJeremy Apthorp1-0/+52