summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index db1698c..3d9f7ac 100644
--- a/flake.nix
+++ b/flake.nix
@@ -71,15 +71,15 @@
treefmt = forAllSystems (pkgs: _: treefmt-nix.lib.evalModule pkgs ./modules/treefmt.nix);
in
{
- packages =
- forAllSystems (
+ packages = (lib.recursiveUpdate
+ (forAllSystems (
pkgs: _system: {
bulwark = pkgs.callPackage ./packages/bulwark/package.nix { };
}
- )
- // {
+ ))
+ {
"x86_64-linux".full-iso = self.nixosConfigurations.full-iso.config.system.build.isoImage;
- };
+ });
# for `nix fmt`
formatter = forAllSystems (_: system: treefmt.${system}.config.build.wrapper);