summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorJakub Stachurski <jakub@wilkuu.xyz>2026-05-30 01:19:13 +0200
committerJakub Stachurski <jakub@wilkuu.xyz>2026-05-30 01:19:13 +0200
commitd375975cdb6d347d85e0f94f58003b7b56512d02 (patch)
tree47ef7aa76d4e2a3a72a5488f9ce3b15a6af8167c /flake.nix
parentaa9866e6533171f6adcd0ba7eb6143841512bb43 (diff)
fix: correctly merge package attrset
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);