diff --git a/options.xhtml b/options.xhtml index 04cefc4e2..44b0f483e 100644 --- a/options.xhtml +++ b/options.xhtml @@ -75278,6 +75278,331 @@ string

+
+ + services.podman.builds + + +
+
+

Defines Podman build quadlet configurations.

+ +

Type: +attribute set of (submodule)

+ +

Default: +{ }

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.authFile + + +
+
+

Path of the authentication file.

+ +

Type: +null or absolute path

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.autoStart + + +
+
+

Whether to start the build on boot. Requires user lingering.

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.description + + +
+
+

The description of the build.

+ +

Type: +null or string

+ +

Default: +"Service for build \${name}"

+ +

Example: +"My Build"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.environment + + +
+
+

Environment variables to set in the build.

+ +

Type: +attribute set of (null or boolean or signed integer or string or absolute path or list of (null or boolean or signed integer or string or absolute path))

+ +

Default: +{ }

+ +

Example:

{
+  VAR1 = "0:100";
+  VAR2 = true;
+  VAR3 = 5;
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.extraConfig + + +
+
+

INI sections and values to populate the Build Quadlet.

+ +

Type: +attribute set of attribute set of ((attribute set of (null or boolean or signed integer or string or absolute path or list of (null or boolean or signed integer or string or absolute path))) or list of (null or boolean or signed integer or string or absolute path) or null or boolean or signed integer or string or absolute path)

+ +

Default: +{ }

+ +

Example:

{
+  Build = {
+    Arch = "aarch64";
+  };
+  Service = {
+    TimeoutStartSec = 15;
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.extraPodmanArgs + + +
+
+

Extra arguments to pass to the podman build command.

+ +

Type: +list of string

+ +

Default: +[ ]

+ +

Example:

[
+  "--retries 5"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.file + + +
+
+

Path to a Containerfile which contains instructions to build the image.

+ +

Type: +string

+ +

Example:

`"xdg.configFile."containerfiles/my-img/Containerfile"`
+or
+`"https://github.com/.../my-img/Containerfile"`
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.labels + + +
+
+

The labels to apply to the build.

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  app = "myapp";
+  some-label = "somelabel";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.tags + + +
+
+

Name associated with the build. +First tag will always be “homemanager/<name>”.

+ +

Type: +list of string

+ +

Default: +[ ]

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.tlsVerify + + +
+
+

Require HTTPS and verification of certificates when contacting registries.

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
+
+ + services.podman.builds.<name>.workingDirectory + + +
+
+

WorkingDirectory of the systemd unit file.

+ +

Type: +null or absolute path

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/builds.nix> + +
+
services.podman.containers @@ -75946,6 +76271,343 @@ list of string

+
+ + services.podman.images + + +
+
+

Defines Podman image quadlet configurations.

+ +

Type: +attribute set of (submodule)

+ +

Default: +{ }

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.authFile + + +
+
+

Path of the authentication file used to connect to registry.

+ +

Type: +null or absolute path

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.autoStart + + +
+
+

Whether to pull the image on boot. Requires user lingering.

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.certDir + + +
+
+

Path of certificates (*.{crt,cert,key}) used to connect to registry.

+ +

Type: +null or absolute path

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.decryptionKeyFile + + +
+
+

Path to key used for decrpytion of images.

+ +

Type: +null or absolute path

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.description + + +
+
+

The description of the image.

+ +

Type: +null or string

+ +

Default: +"Service for image \${name}"

+ +

Example: +"My Image"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.extraConfig + + +
+
+

INI sections and values to populate the Image Quadlet.

+ +

Type: +attribute set of attribute set of ((attribute set of (null or boolean or signed integer or string or absolute path or list of (null or boolean or signed integer or string or absolute path))) or list of (null or boolean or signed integer or string or absolute path) or null or boolean or signed integer or string or absolute path)

+ +

Default: +{ }

+ +

Example:

{
+  Image = {
+    ContainersConfModule = "/etc/nvd.conf";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.extraPodmanArgs + + +
+
+

Extra arguments to pass to the podman image pull command.

+ +

Type: +list of string

+ +

Default: +[ ]

+ +

Example:

[
+  "--os=linux"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.image + + +
+
+

Image to pull.

+ +

Type: +string

+ +

Example: +"quay.io/centos/centos:latest"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.password + + +
+
+

Password used to connect to registry. (Will be visible in nix store)

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"P@ssw0rd"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.tag + + +
+
+

FQIN of referenced Image when source is a file or directory archive.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"quay.io/centos/centos:latest"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.tlsVerify + + +
+
+

Require HTTPS and verification of certificates when contacting registries.

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
+
+ + services.podman.images.<name>.username + + +
+
+

Username used to connect to registry.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"bob"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/images.nix> + +
+
services.podman.networks @@ -76377,6 +77039,377 @@ TOML value

+
+ + services.podman.volumes + + +
+
+

Defines Podman volume quadlet configurations.

+ +

Type: +attribute set of (submodule)

+ +

Default: +{ }

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.autoStart + + +
+
+

Whether to create the volume on boot.

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.copy + + +
+
+

Copy content of the image located at the mountpoint of the volume on first run.

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.description + + +
+
+

The description of the volume.

+ +

Type: +null or string

+ +

Default: +"Service for volume \${name}"

+ +

Example: +"My Volume"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.device + + +
+
+

The path of a device which is mounted for the volume.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"tmpfs"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.driver + + +
+
+

The volume driver to use.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"image"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.extraConfig + + +
+
+

INI sections and values to populate the Volume Quadlet.

+ +

Type: +attribute set of attribute set of ((attribute set of (null or boolean or signed integer or string or absolute path or list of (null or boolean or signed integer or string or absolute path))) or list of (null or boolean or signed integer or string or absolute path) or null or boolean or signed integer or string or absolute path)

+ +

Default: +{ }

+ +

Example:

{
+  Volume = {
+    ContainerConfModule = "/etc/nvd.conf";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.extraPodmanArgs + + +
+
+

Extra arguments to pass to the podman volume create command.

+ +

Type: +list of string

+ +

Default: +[ ]

+ +

Example:

[
+  "--opt copy"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.group + + +
+
+

The group ID owning the volume inside the container.

+ +

Type: +null or signed integer or string

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.image + + +
+
+

Specifies the image the volume is based on when Driver is set to the image.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"quay.io/centos/centos:latest"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.labels + + +
+
+

The labels to apply to the volume.

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  app = "myapp";
+  some-label = "somelabel";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.preserve + + +
+
+

Whether the volume should be preserved if it is removed from the configuration. +Setting this to false will cause the volume to be deleted if the volume is removed from the configuration

+ +

Type: +boolean

+ +

Default: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.type + + +
+
+

Filesystem type of Device. (used as -t in mount commands)

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"tmpfs"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
+
+ + services.podman.volumes.<name>.user + + +
+
+

The user ID owning the volume inside the container.

+ +

Type: +null or signed integer or string

+ +

Default: +null

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/podman-linux/volumes.nix> + +
+
services.polybar.enable