about summary refs log tree commit diff
path: root/nixos/modules/services/backup/bacula.nix
AgeCommit message (Collapse)AuthorFilesLines
2024-04-13nixos: remove all uses of lib.mdDocstuebinm1-42/+41
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-03-01nixos/bacula: refactor option generationRaHoni1-35/+45
The generation of the descriptions always used lib explicitly even thoughit was already specified with 'with'. Since using `with lib` is discouraged this was also changed to inherit.
2024-03-01nixos/bacula: Add support for TLSRaHoni1-3/+143
Added the majority of TLS options used for transport encryption. This uses a submodule since all resources share the same settings. The documentation can be found under: https://www.bacula.org/13.0.x-manuals/en/main/Bacula_TLS_Communications_E.html
2023-07-29nixos/bacula: fix postgresql config and remove unneeded quotation marksRouven Seifert1-20/+20
The module falsely disabled postgresql completely when the bacula-sd was not enabled. Quotation marks are not necessary and only useful in `name` fields.
2022-11-10treewide: use `types.port` in nixos modulesDaniel Nagy1-3/+3
2022-08-31nixos/*: md-"convert" empty descriptionspennae1-1/+1
for some reason these are not picked up properly by nix-doc-munge, so we'll do this instead.
2022-07-30treewide: automatically md-convert option descriptionspennae1-40/+40
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-12-02nixos/*: add trivial defaultText for options with simple defaultspennae1-0/+3
2021-01-25bacula: add typesFritz Otlinghaus1-0/+20
2021-01-24treewide: fix double quoted strings in meta.descriptionvolth1-2/+1
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
2020-08-07nixos/modules: remove trailing whitespaceJörg Thalheim1-18/+18
This leads to ci failure otherwise if the file gets changed. git-blame can ignore whitespace changes.
2019-12-11nixos/bacula-sd: add autochange supportwucke131-11/+155
+ Fixing interrupted descriptions + Added more verbose descriptions + Addded <literal> to the descriptions + uniformly reformated descriptions to break at 80 chars (cherry picked from commit c7945c8a97df52a468cf32155154cdec021561bc)
2019-03-20nixos/bacula: /var/run -> /runBob van der Linden1-3/+3
2018-11-10Merge pull request #37365 from proteansec/pkgs/baculaSilvan Mosberger1-6/+18
bacula: 5.2.13 -> 9.2.1
2018-11-01bacula: 5.2.13 -> 9.2.1Dejan Lukan1-6/+18
2018-07-20[bot] nixos/*: remove unused arguments in lambdasvolth1-2/+2
2018-07-20[bot]: remove unreferenced codevolth1-11/+0
2018-06-30nixos/modules: users.(extraUsers|extraGroup->users|group)Florian Klink1-2/+2
2016-10-23nixos: use types.lines for extraConfigEmery Hemingway1-0/+1
2016-09-13bacula module: optionSet -> submoduleEric Sagnes1-6/+3
2016-01-17Add missing 'type', 'defaultText' and 'literalExample' in module definitionsThomas Strobel1-2/+2
- add missing types in module definitions - add missing 'defaultText' in module definitions - wrap example with 'literalExample' where necessary in module definitions
2015-09-07nixos: bacula service: re-format descriptionsTobias Geerinckx-Rice1-5/+10
2015-06-15types.uniq types.int -> types.intEelco Dolstra1-3/+3
types.int already implies uniqueness.
2014-04-14Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra1-2/+2
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.
2013-10-10Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra1-0/+408