Skip to content

Commit

Permalink
imp: fix hydraJobs eval
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Mar 7, 2025
1 parent 3d6ab59 commit b756344
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion nix/nixos/cardano-node-service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

with lib; with builtins;
let
inherit (types) attrs attrsOf bool enum functionTo listOf package nullOr str;
inherit (types) attrs attrsOf bool either enum functionTo int listOf package nullOr str;

cfg = config.services.cardano-node;
envConfig = cfg.environments.${cfg.environment};
Expand Down
18 changes: 10 additions & 8 deletions nix/workbench/service/tracer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,16 @@ let
};
in evalModules {
prefix = [];
modules = import ../../nixos/module-list.nix
++ [
(import ../../nixos/cardano-tracer-service.nix pkgs)
systemdCompat
extra
{ config._module.args = { inherit pkgs; }; }
]
++ [ backend.service-modules.tracer or {} ]
modules = [
(import ../../nixos/cardano-node-service.nix)
(import ../../nixos/cardano-submit-api-service.nix)
# (import ../../nixos/cardano-tracer-service.nix)
(import ../../nixos/cardano-tracer-service-legacy.nix pkgs)
systemdCompat
extra
{ config._module.args = { inherit pkgs; }; }
]
++ [ backend.service-modules.tracer or {} ]
;
# args = { inherit pkgs; };
}
Expand Down

0 comments on commit b756344

Please sign in to comment.