diff options
| author | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-05-30 01:19:13 +0200 |
|---|---|---|
| committer | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-05-30 01:19:13 +0200 |
| commit | d375975cdb6d347d85e0f94f58003b7b56512d02 (patch) | |
| tree | 47ef7aa76d4e2a3a72a5488f9ce3b15a6af8167c /flake.nix | |
| parent | aa9866e6533171f6adcd0ba7eb6143841512bb43 (diff) | |
fix: correctly merge package attrset
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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); |
