Skip to content

Commit

Permalink
refactor: remove outputsForTarget
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Sep 29, 2023
1 parent 3e7a7c5 commit ffd8c3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/haumea/nixosModules.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ let
s3final =
let
s3Module = mkExtenders (winnow path s3 mkModulePath) path;
s3Profile = mkExtenders s3;
s3Profile = mkExtenders s3 path;
in
if cfg.type == "nixosModules" then s3Module else s3Profile;

Expand All @@ -99,7 +99,7 @@ let
let
removedOptionModule = removeAttrs module [ "options" ];
filteredList =
l.filter (item: item.path == (trace (relModulePathWithoutDefault path)))
l.filter (item: item.path == (relModulePathWithoutDefault path))
extenders;

foundItem =
Expand Down

0 comments on commit ffd8c3a

Please sign in to comment.