summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases/firebird.nix
AgeCommit message (Collapse)Author
2024-04-13nixos: remove all uses of lib.mdDocstuebinm
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
2024-01-19Merge pull request #267327 from bbenno/fix/nixos-firebirdPeder Bergebakken Sundt
nixos/firebird: fix coerce error
2023-11-27treewide: use `mkPackageOption`h7x4
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
2023-11-13nixos/firebird: fix coerce errorBenno Bielmeier
When `services.firebird.enable` following error is thrown: error: cannot coerce an integer to a string After explicitly cast the port (integer) to string the error disappears.
2023-11-11treewide: fix redirected and broken URLsAnthony Roussel
Using the script in maintainers/scripts/update-redirected-urls.sh
2023-05-19nixos: fix typosfigsoda
2022-12-17nixos: fix typosfigsoda
2022-08-31nixos/*: automatically convert option descriptionspennae
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
2022-08-03nixos/*: automatically convert option docs to MDpennae
once again using nix-doc-munge (https://github.com/pennae/nix-doc-munge/commit/69d080323ae27c0d8da3967c62b925a9aedb2828)
2022-08-03nixos/*: replace <code> in option docs with <literal>pennae
markdown can't represent the difference without another extension and both the html manual and the manpage render them the same, so keeping the distinction is not very useful on its own. with the distinction removed we can automatically convert many options that use <code> tags to markdown. the manpage remains unchanged, html manual does not render differently (but class names on code tags do change from "code" to "literal").
2022-07-30treewide: automatically md-convert option descriptionspennae
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
2021-10-04nixos/doc: clean up defaults and examplesNaïm Favier
2021-05-23nixos/firebird: updated firebird packagesuperherointj
2021-01-24treewide: fix double quoted strings in meta.descriptionvolth
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
2020-06-30nixos/firebird: Type all optionsJanne Heß
2020-04-21treewide: add bool type to enable options, or make use of mkEnableOptionDominik Xaver Hörl
Add missing type information to manually specified enable options or replace them by mkEnableOption where appropriate.
2019-05-26nixos/firebird: replace deprecated usage of PermissionsStartOnlyAaron Andersen
see https://github.com/NixOS/nixpkgs/issues/53852
2018-06-30nixos/modules: users.(extraUsers|extraGroup->users|group)Florian Klink
2016-01-17Add missing 'type', 'defaultText' and 'literalExample' in module definitionsThomas Strobel
- add missing types in module definitions - add missing 'defaultText' in module definitions - wrap example with 'literalExample' where necessary in module definitions
2014-07-08nixos: add 'firebird' groupMarc Weber
The firebird module complains without missing 'firebird' group, add it.
2014-04-14Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra
Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
2014-02-27nixos: set all package options to have type packageDomen Kožar
2013-10-25firebird.nix: Fix a misplaced } that causes "users" to be outside "config"Eelco Dolstra
2013-10-21Firebird service:Marc Weber
* simplify directory layout * clean up option descriptions * let the user override Firebird package * create firebird user * clarify TODO comment Close # 1061.
2013-10-10Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra