From 516ae732395673f57febe9596983dd2db33bd3bf Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Wed, 3 Jul 2024 18:23:42 -0700 Subject: [PATCH] Add dockerImages output --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index f3f28bd..1f53709 100644 --- a/flake.nix +++ b/flake.nix @@ -72,6 +72,14 @@ inventory = self.lib.derivationsInventory "package" false; }; + dockerImagesSchema = { + version = 1; + doc = '' + The `dockerImages` flake output contains derivations that build valid Docker images. + ''; + inventory = self.lib.derivationsInventory "Docker image" false; + }; + legacyPackagesSchema = { version = 1; doc = '' @@ -335,5 +343,6 @@ schemas.nixosModules = nixosModulesSchema; schemas.homeConfigurations = homeConfigurationsSchema; schemas.darwinConfigurations = darwinConfigurationsSchema; + schemas.dockerImages = dockerImagesSchema; }; }