wrapperManagerLib.formats

wrapperManagerLib.formats.systemdIni

Nix-representable data format for systemd INI format as described from {manpage}`systemd.syntax(5)`.

Arguments

An empty attribute set. This is set for forward-compatability for future settings that some Nix formats already does (such as pkgs.formats.ini and pkgs.formats.elixir).

It has no settings for now.

Example

settingsFormat = systemdIni { };
=> {
  type = # Module type
  generate = # Generator function
}

wrapperManagerLib.formats.glibKeyfileIni

Nix-representable format for GLib keyfile INI format as described from its documentation for the most part. The difference is this does not allow multiple sections with the same name as instead follows from possible input from lib.generators.toDconfINI in nixpkgs.

Arguments

An empty attribute set. This is set for forward-compatability for future settings that some Nix formats already does (such as pkgs.formats.ini and pkgs.formats.elixir).

It has no settings for now.

Example

settingsFormat = glibKeyfileIni { };
=> {
  type = # Module type
  generate = # Generator function
}