Skip to content

Commit

Permalink
Add key for dedup to thymis image formats
Browse files Browse the repository at this point in the history
  • Loading branch information
elikoga authored and MSchmoecker committed Oct 19, 2024
1 parent e93a61b commit 70633ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions image-formats.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,23 @@ 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 = [
inputs.nixos-generators.nixosModules.install-iso
];
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 = [
inputs.nixos-generators.nixosModules.sd-aarch64
];
sdImage.compressImage = false;
system.build.thymis-image = config.system.build.sdImage;
key = "github:thymis-io/thymis/image-formats.nix:sd-card-image";
};
};
in
Expand Down

0 comments on commit 70633ca

Please sign in to comment.