From 70633cad6edbcf40432d6ec72d076b7efdcea1a9 Mon Sep 17 00:00:00 2001 From: Eli Kogan-Wang Date: Sat, 19 Oct 2024 17:02:59 +0200 Subject: [PATCH] Add key for dedup to thymis image formats --- image-formats.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/image-formats.nix b/image-formats.nix index 734b3d9f..2f41cb9a 100644 --- a/image-formats.nix +++ b/image-formats.nix @@ -8,6 +8,7 @@ let inputs.nixos-generators.nixosModules.qcow ]; system.build.thymis-image = config.system.build.qcow; + key = "github:thymis-io/thymis/image-formats.nix:qcow"; }; install-iso = { config, ... }: { imports = [ @@ -15,6 +16,7 @@ let ]; system.build.thymis-image = config.system.build.isoImage; warnings = [ "This format is not entirely supported yet" ]; + key = "github:thymis-io/thymis/image-formats.nix:install-iso"; }; sd-card-image = { config, ... }: { imports = [ @@ -22,6 +24,7 @@ let ]; sdImage.compressImage = false; system.build.thymis-image = config.system.build.sdImage; + key = "github:thymis-io/thymis/image-formats.nix:sd-card-image"; }; }; in