Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ save-ssh-config:
tofu workspace select -or-create cluster
let tf = (tofu show -json | from json)
let key = ($tf.values.root_module.resources | where type == local_file and name == ssh_config)
$key.values.content | to text | save --force .ssh_config
$key.values.content | (parse --regex '(?ms)(.*)\n').capture0 | to text | save --force .ssh_config
chmod 0600 .ssh_config

# Set the shell's default node env
Expand Down
36 changes: 19 additions & 17 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,10 @@
nixpkgs.follows = "cardano-parts/nixpkgs";
nixpkgs-unstable.follows = "cardano-parts/nixpkgs-unstable";
flake-parts.follows = "cardano-parts/flake-parts";
cardano-parts.url = "github:input-output-hk/cardano-parts/v2025-11-18";
# cardano-parts.url = "path:/home/jlotoski/work/iohk/cardano-parts-wt/v2025-11-18";
cardano-parts.url = "github:input-output-hk/cardano-parts/v2025-12-04";
# cardano-parts.url = "path:/home/jlotoski/work/iohk/cardano-parts-wt/v2025-12-04";

# Local pins for additional customization:
# cardanoTest.url = "github:IntersectMBO/cardano-node/10.5.1";
# cardanoTest.url = "github:IntersectMBO/cardano-node/ana/10.6-final-integration-mix";
# cardanoTest.url = "path:/home/jlotoski/work/iohk/cardano-node-wt/ana/10.6-final-integration-mix";

# cardano-node-lsm-test.url = "github:IntersectMBO/cardano-node/js/lsm-beta";

# PParams api testing
Expand Down
Loading